473,320 Members | 1,876 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

script in table

Hi :)

i've found a usefull script : http://www.editeurjavascript.com/scr...ires_3_786.php

but if i do the same with my form inserted in a table then it doesn't
work anymore.

i don't understand why as my javascript knowledge is poor :(

is there a solution to make this script work even when the form is in
a table ?

Thanks a lot.

Apr 23 '07 #1
8 1639
On 23 Apr, 01:00, Axelar <alexandre....@gmail.comwrote:
Hi :)

i've found a usefull script :http://www.editeurjavascript.com/scr...ires_3_786.php

but if i do the same with my form inserted in a table then it doesn't
work anymore.

i don't understand why as my javascript knowledge is poor :(

is there a solution to make this script work even when the form is in
a table ?

Thanks a lot.
the code assumes the inputs are next to each other. siblings, so if
you place them inside a table they must all be in the same cell. why
not use css to style the inpouts so they can remain together, or
change the script to not reply on them being adjacent.

Apr 23 '07 #2
On Apr 23, 10:00 am, Axelar <alexandre....@gmail.comwrote:
Hi :)

i've found a usefull script :http://www.editeurjavascript.com/scr...ires_3_786.php

but if i do the same with my form inserted in a table then it doesn't
work anymore.

i don't understand why as my javascript knowledge is poor :(

is there a solution to make this script work even when the form is in
a table ?
The script is very ordinary, you will be better off to describe what
you are actually trying to do and someone may offer some help. There
was a question very recently that asked about checking and unchecking
a bunch of checkboxes, look at recent posts (say within last 7 days).
--
Rob

Apr 23 '07 #3
On 23 avr, 02:19, RobG <r...@iinet.net.auwrote:
On Apr 23, 10:00 am, Axelar <alexandre....@gmail.comwrote:
Hi :)
i've found a usefull script :http://www.editeurjavascript.com/scr...ires_3_786.php
but if i do the same with my form inserted in a table then it doesn't
work anymore.
i don't understand why as my javascript knowledge is poor :(
is there a solution to make this script work even when the form is in
a table ?

The script is very ordinary, you will be better off to describe what
you are actually trying to do and someone may offer some help. There
was a question very recently that asked about checking and unchecking
a bunch of checkboxes, look at recent posts (say within last 7 days).

--
Rob
i'm trying to manage rights for a photo/video galery.
so i've made a table with a row for each photo album and a column for
each different right (access, modify, delete, comment....)
but to be more efficient i'd like to have a way to make multiple
checkings, for example if i check the access checkbox for the holiday
photo folder, i want every sub-folder such as holidays 2K4, holidays
2K5 and holidayS 2K6 to have the access checkbox checked, as they are
'sons' of holiday folder.

sorry for my poor english and thanks for your answers !

Apr 23 '07 #4
On 23 Apr, 08:56, Axelar <alexandre....@gmail.comwrote:
On 23 avr, 02:19, RobG <r...@iinet.net.auwrote:
On Apr 23, 10:00 am, Axelar <alexandre....@gmail.comwrote:
Hi :)
i've found a usefull script :http://www.editeurjavascript.com/scr...ires_3_786.php
but if i do the same with my form inserted in a table then it doesn't
work anymore.
i don't understand why as my javascript knowledge is poor :(
is there a solution to make this script work even when the form is in
a table ?
The script is very ordinary, you will be better off to describe what
you are actually trying to do and someone may offer some help. There
was a question very recently that asked about checking and unchecking
a bunch of checkboxes, look at recent posts (say within last 7 days).
--
Rob

i'm trying to manage rights for a photo/video galery.
so i've made a table with a row for each photo album and a column for
each different right (access, modify, delete, comment....)
but to be more efficient i'd like to have a way to make multiple
checkings, for example if i check the access checkbox for the holiday
photo folder, i want every sub-folder such as holidays 2K4, holidays
2K5 and holidayS 2K6 to have the access checkbox checked, as they are
'sons' of holiday folder.

sorry for my poor english and thanks for your answers !
you first question is "how do I determine what are sons of the current
object"
is there a way you can do this, do they all have something in common
holidays
|_holiday_2k3
|_holiday_2k4
|_holiday_2k5
....
screenshots
|_screenshot_1
|_screenshot_2
|_screenshot_3
....

or are they random
screnshots
|_screentshot_of_mac_app
|_shot_of_win_app

so determine how you are going to find the "group" of things to be
checked, then loop through them setting them to checked.
if you cant think how to get the group then post some of your source
code.

Apr 23 '07 #5
Axelar wrote:
On 23 avr, 02:19, RobG <r...@iinet.net.auwrote:
>On Apr 23, 10:00 am, Axelar <alexandre....@gmail.comwrote:
>>Hi :)
i've found a usefull script :http://www.editeurjavascript.com/scr...ires_3_786.php
but if i do the same with my form inserted in a table then it doesn't
work anymore.
i don't understand why as my javascript knowledge is poor :(
is there a solution to make this script work even when the form is in
a table ?
The script is very ordinary, you will be better off to describe what
you are actually trying to do and someone may offer some help. There
was a question very recently that asked about checking and unchecking
a bunch of checkboxes, look at recent posts (say within last 7 days).

--
Rob

i'm trying to manage rights for a photo/video galery.
so i've made a table with a row for each photo album and a column for
each different right (access, modify, delete, comment....)
but to be more efficient i'd like to have a way to make multiple
checkings, for example if i check the access checkbox for the holiday
photo folder, i want every sub-folder such as holidays 2K4, holidays
2K5 and holidayS 2K6 to have the access checkbox checked, as they are
'sons' of holiday folder.

sorry for my poor english and thanks for your answers !
Search for the thread with title "Checkboxes inside the Table Cells"
--
Rob
Apr 23 '07 #6
On 23 avr, 13:31, shimmyshack <matt.fa...@gmail.comwrote:
On 23 Apr, 08:56, Axelar <alexandre....@gmail.comwrote:
On 23 avr, 02:19, RobG <r...@iinet.net.auwrote:
On Apr 23, 10:00 am, Axelar <alexandre....@gmail.comwrote:
Hi :)
i've found a usefull script :http://www.editeurjavascript.com/scr...ires_3_786.php
but if i do the same with my form inserted in a table then it doesn't
work anymore.
i don't understand why as my javascript knowledge is poor :(
is there a solution to make this script work even when the form is in
a table ?
The script is very ordinary, you will be better off to describe what
you are actually trying to do and someone may offer some help. There
was a question very recently that asked about checking and unchecking
a bunch of checkboxes, look at recent posts (say within last 7 days).
--
Rob
i'm trying to manage rights for a photo/video galery.
so i've made a table with a row for each photo album and a column for
each different right (access, modify, delete, comment....)
but to be more efficient i'd like to have a way to make multiple
checkings, for example if i check the access checkbox for the holiday
photo folder, i want every sub-folder such as holidays 2K4, holidays
2K5 and holidayS 2K6 to have the access checkbox checked, as they are
'sons' of holiday folder.
sorry for my poor english and thanks for your answers !

you first question is "how do I determine what are sons of the current
object"
is there a way you can do this, do they all have something in common
holidays
|_holiday_2k3
|_holiday_2k4
|_holiday_2k5
...
screenshots
|_screenshot_1
|_screenshot_2
|_screenshot_3
...

or are they random
screnshots
|_screentshot_of_mac_app
|_shot_of_win_app

so determine how you are going to find the "group" of things to be
checked, then loop through them setting them to checked.
if you cant think how to get the group then post some of your source
code.
they are sorted, you can have a look at the page and the source at :
http://www.axelar.net/testjava.php?action=gererdroits
>Search for the thread with title "Checkboxes inside the Table Cells"
I've read the thread but it only work with one column, and i need to
be able to check column by column...

Anyway thanks for your answers :)

Apr 23 '07 #7
Axelar wrote:
On 23 avr, 13:31, shimmyshack <matt.fa...@gmail.comwrote:
>On 23 Apr, 08:56, Axelar <alexandre....@gmail.comwrote:
>>On 23 avr, 02:19, RobG <r...@iinet.net.auwrote:
On Apr 23, 10:00 am, Axelar <alexandre....@gmail.comwrote:
Hi :)
i've found a usefull script :http://www.editeurjavascript.com/scr...ires_3_786.php
but if i do the same with my form inserted in a table then it doesn't
work anymore.
i don't understand why as my javascript knowledge is poor :(
is there a solution to make this script work even when the form is in
a table ?
The script is very ordinary, you will be better off to describe what
you are actually trying to do and someone may offer some help. There
was a question very recently that asked about checking and unchecking
a bunch of checkboxes, look at recent posts (say within last 7 days).
--
Rob
i'm trying to manage rights for a photo/video galery.
so i've made a table with a row for each photo album and a column for
each different right (access, modify, delete, comment....)
but to be more efficient i'd like to have a way to make multiple
checkings, for example if i check the access checkbox for the holiday
photo folder, i want every sub-folder such as holidays 2K4, holidays
2K5 and holidayS 2K6 to have the access checkbox checked, as they are
'sons' of holiday folder.
sorry for my poor english and thanks for your answers !
you first question is "how do I determine what are sons of the current
object"
is there a way you can do this, do they all have something in common
holidays
|_holiday_2k3
|_holiday_2k4
|_holiday_2k5
...
screenshots
|_screenshot_1
|_screenshot_2
|_screenshot_3
...

or are they random
screnshots
|_screentshot_of_mac_app
|_shot_of_win_app

so determine how you are going to find the "group" of things to be
checked, then loop through them setting them to checked.
if you cant think how to get the group then post some of your source
code.

they are sorted, you can have a look at the page and the source at :
http://www.axelar.net/testjava.php?action=gererdroits
>Search for the thread with title "Checkboxes inside the Table Cells"

I've read the thread but it only work with one column, and i need to
be able to check column by column...

Anyway thanks for your answers :)
I think I would much more greatly concerned about having an almost 2
Megabyte JPEG as a background.

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Apr 23 '07 #8
I think I would much more greatly concerned about having an almost 2
Megabyte JPEG as a background.
thank you for this helpfull answer

for your information this site is only for a familial purpose so i
don't need to worry about this
overmore i've made a css selector allowing to choose distincts
appearance and some of them are very light

try for example with http://www.axelar.net/testjava.php?a...roits&style=93
Apr 23 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Marc de Winter | last post by:
Hello all, I hope someone on this group can help me, even though this is kind of a specific question about a (widely used) script. It's the NMS-WWWBOARD script. Formerly from "Matt's Script...
6
by: Clay Beatty | last post by:
When you create database diagrams in Enterprise Manager, the details for constructing those diagrams is saved into the dtproperties table. This table includes an image field which contains most of...
4
by: D Newsham | last post by:
Hi, This javascript creates a table that has a header and side column that do not move while scrolling through the table. I need to convert this to vb script. Can anybody help, or do you have...
6
by: Christopher Benson-Manica | last post by:
I have some markup like the following: <form> <table> <script> <!-- Write the table markup //--> </script> </table> <form>
2
by: Muzzy | last post by:
Hi, I've used information on these newsgroups to build many pages. So I thought that now that I have my script working (something that I've been working on for about a week), I should post it so...
3
by: rsteph | last post by:
I have a script that shows the time and date. It's been working on my site for quite a while now. Suddenly it stops showing up, after getting my drop down menu to work. If I put text between the...
3
by: Angus | last post by:
I have a web page with a toolbar containing a Save button. The Save button can change contextually to be a Search button in some cases. Hence the button name searchsavechanges. The snippet of...
16
by: Okonita via DBMonster.com | last post by:
Hi all, I am comming along with all this Linus/DB2/scripting business...I am no longer scared of it!! (LOL). But, I need to create a .ksh script that does a REORGCHK and output only tables...
7
by: imtmub | last post by:
I have a page, Head tag Contains many Scripts and style sheet for Menu and Page. This code working fine and displaying menus and page as i wanted. Check this page for reference....
82
by: happyse27 | last post by:
Hi All, I modified the user registration script, but not sure how to make it check for each variable in terms of preventing junk registration and invalid characters? Two codes below : a)...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.