473,396 Members | 2,023 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,396 software developers and data experts.

PHP-Javascript method for auto-selecting checkbox groups

I am producing a form using PHP on the back end and Javascript on the
front end. The resulting script will come to the browser as follows:

Expand|Select|Wrap|Line Numbers
  1. <script>
  2. <!--
  3. function selectAll() {
  4. moveElement = eval("document.imageForm.move" + "[]");
  5. alert(moveElement);
  6. if (document.imageForm.select_all[0].checked) {
  7. for (i = 0; i < document.imageForm.move.length; i++) {
  8. document.imageForm.move[i].checked = true;
  9. }
  10. }
  11. }
  12.  
  13. function deSelectAll() {
  14. if (!document.imageForm.select_all[0].checked ||
  15. document.imageForm.deselect_all[0].checked) {
  16. for (i = 0; i < document.imageForm.move.length; i++) {
  17. document.imageForm.move[i].checked = false;
  18. }
  19. }
  20. }
  21. //-->
  22. </script>
  23.  
This will work with a checkbox group that has to have this naming
convention for PHP:

Expand|Select|Wrap|Line Numbers
  1. <input type=checkbox name=move[] value="myImage.gif"> - Move?
  2.  
I will also have a checkbox that will "select all" and "de-select
all":

Expand|Select|Wrap|Line Numbers
  1. <input type=checkbox name=select_all value=1 onChange="selectAll()"> -
  2. Select All&nbsp;&nbsp;
  3. <input type=checkbox name=deselect_all value=1
  4. onChange="deSelectAll()"> - De-select All
  5.  
I am not familiar at how Javascript can work with non-standard naming
conventions for event actions, can someone tell me what I'm doing
wrong? This fails at least in Mozilla 1.6

Thanx
Phil
Jul 23 '05 #1
7 1869
"Phil Powell" <so*****@erols.com> wrote:
This will work with a checkbox group that has to have this naming
convention for PHP:
I will also have a checkbox that will "select all" and "de-select
all":


Checkboxes don't have onChange() events, they have onclick() events.

If you want to ease your pain a bit, you could consider using my "Checkbox
Group" library, which would handle all this for you quite easily:
http://www.mattkruse.com/javascript/checkboxgroup/

--
Matt Kruse
Javascript Toolbox: http://www.mattkruse.com/javascript/
Jul 23 '05 #2
I'm sorry but please provide a very simple tutorial on this, you went so
far over my head that you were on Jupiter and I'm underground.

Phil

---------------------------------------
TCL and PHP: The Superior Web Languages!
javascript: Is Cool
ASP: why?
http://valsignalandet.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 23 '05 #3
Phil Powell wrote:
I am producing a form using PHP on the back end and Javascript on the
front end. The resulting script will come to the browser as follows:

Expand|Select|Wrap|Line Numbers
  1.  <script>
  2.  <!--
  3.    function selectAll() {
  4.     moveElement = eval("document.imageForm.move" + "[]");
  5.     alert(moveElement);
  6.     if (document.imageForm.select_all[0].checked) {
  7.      for (i = 0; i < document.imageForm.move.length; i++) {
  8.       document.imageForm.move[i].checked = true;
  9.      }
  10.    }
  11.   }
  12.   function deSelectAll() {
  13.    if (!document.imageForm.select_all[0].checked ||
  14.  document.imageForm.deselect_all[0].checked) {
  15.     for (i = 0; i < document.imageForm.move.length; i++) {
  16.      document.imageForm.move[i].checked = false;
  17.     }
  18.    }
  19.   }
  20.  //-->
  21.  </script>
  22.  

This will work with a checkbox group that has to have this naming
convention for PHP:

Expand|Select|Wrap|Line Numbers
  1.  <input type=checkbox name=move[] value="myImage.gif"> - Move?
  2.  

I will also have a checkbox that will "select all" and "de-select
all":

Expand|Select|Wrap|Line Numbers
  1.  <input type=checkbox name=select_all value=1 onChange="selectAll()"> -
  2.  Select All&nbsp;&nbsp;
  3.  <input type=checkbox name=deselect_all value=1
  4.  onChange="deSelectAll()"> - De-select All
  5.  

I am not familiar at how Javascript can work with non-standard naming
conventions for event actions, can someone tell me what I'm doing
wrong? This fails at least in Mozilla 1.6

Thanx
Phil

Your problem is reasonably common (search google groups for select box
and php and I'm sure you'll find a few recent posts (one or two from me)
related to this.

However... there are two methods that you can use to refer to an object
in a form in javascript - I'm a newbie (six months) but think I'm
getting pretty strong... someone though might have some other
method/solution... however, use something like

boxLength=document.forms["formGroups"].elements["userSelected[]"].length;

where by 'formGroups' is the name of your form and 'userSelect[]' is the
name of your select box.

Using my above example, boxLength would equal the total number of
selections in a multi-select box.

Also... put quotes around your INPUT TAG name field... thus

Use <input type=checkbox name="move[]" value="myImage.gif"> not <input type=checkbox name=move[] value="myImage.gif">


as the [] might cause some grief on some web browsers...

Lastly - I just learned that a mis-use of eval is common - there are
other methods that you can use that use less resources and faster (for
example, from a numeric point of view you could use something like
parseInt() - Do a search on google groups for a recent message I got
which explains the reasons - search for "why is eval evil" in
comp.lang.javascript for a detailed explanation.

Hope something above gives you some help...

Regards
Randell D.
Jul 23 '05 #4
Following occurred when my colleague tested on his machine using IE
6.0 SP 4 for Win2000 (I am using Linux/Mozilla):

Ok, back to the drawing board, it didn't work when my colleague tested
on his machine using IE 6.0 SP4 for Win2K:

I tried with the HTML code below, but IE spat out the following:

Line: 42
Char: 1
Error: 'document.imageForm.move[]' is null or not an object
Code: 0
URL: file://C:\Documents and Settings\eduardo\Desktop\test.html

HTML code:

<html>
<head>
<title></title>
<body>
<script>
<!--
~ function selectAll(checkState, selectStatus, obj) {
~ if (document.imageForm.select_all.checked ||
document.imageForm.deselect_all.checked) {
~ for (i = 0; i < obj.length; i++) {
~ obj[i].checked = checkState;
~ }
~ if (selectStatus.toLowerCase() == 'select')
document.imageForm.deselect_all.checked = false;
~ if (selectStatus.toLowerCase() == 'deselect')
document.imageForm.select_all.checked = false;
~ }
}
//-->
</script>

<table>
<tr>
~ <td bgcolor=ffffff><a
href="./images/mu-spin/kyrka.jpg">kyrka.jpg</a></td>
~ <td bgcolor=ffffff>Show Metadata</td>
~ <td bgcolor=ffffff><input type=checkbox name="move[]"
value="kyrka.jpg"> - Move?</td>

</tr>
<tr>
~ <td bgcolor=ffffcc><a
href="./images/mu-spin/banner.jpg.jpeg">banner.jpg.jpeg</a></td>
~ <td bgcolor=ffffcc><a
href=index.php?section=image&action=edit&chooseAlb um=1&album=mu-spin&id=147>Show
Metadata</a></td>
~ <td bgcolor=ffffcc><input type=checkbox name="move[]"
value="banner.jpg.jpeg"> - Move?</td>
</tr>
<tr>

~ <td bgcolor=ffffff><a
href="./images/mu-spin/kyrka_gray.jpg">kyrka_gray.jpg</a></td>
~ <td bgcolor=ffffff><a
href=index.php?section=image&action=edit&chooseAlb um=1&album=mu-spin&id=145>Show
Metadata</a></td>
~ <td bgcolor=ffffff><input type=checkbox name="move[]"
value="kyrka_gray.jpg"> - Move?</td>
</tr>
<tr>
~ <td colspan=3 bgcolor=ddddee>
~ <input type=checkbox name="select_all" value=1
onClick="selectAll(true, 'select', document.imageForm['move[]'])"> -
Select All&nbsp;&nbsp;<input type=checkbox name="deselect_all" value=1
onClick="selectAll(false, 'deselect', document.imageForm['move[]'])">
-
De-Select All</td>

</tr>
</table>
</body>
</html>

Phil

"Matt Kruse" <ne********@mattkruse.com> wrote in message news:<c5*********@news3.newsguy.com>...
"Phil Powell" <so*****@erols.com> wrote:
This will work with a checkbox group that has to have this naming
convention for PHP:
I will also have a checkbox that will "select all" and "de-select
all":


Checkboxes don't have onChange() events, they have onclick() events.

If you want to ease your pain a bit, you could consider using my "Checkbox
Group" library, which would handle all this for you quite easily:
http://www.mattkruse.com/javascript/checkboxgroup/

Jul 23 '05 #5
"Phil Powell" <so*****@erols.com> wrote in message
news:1c**************************@posting.google.c om...
Following occurred when my colleague tested on his machine using IE
6.0 SP 4 for Win2000 (I am using Linux/Mozilla):


Aren't you missing a <form> tag entirely?

--
Matt Kruse
Javascript Toolbox: http://www.mattkruse.com/javascript/
Jul 23 '05 #6
No I just forgot to include it within the code I pasted here. Here is
the corrected code that now works in IE, Opera, Konqueror and Mozilla,
according to tests I did and a colleague did:

<form name="imageForm" method=post action=index.php
onSubmit='setHasSelectedAlbum(); return willMoveImages("Any metadata
associated with the images moved will be altered by moving the images.
Are you sure?")'>
<tr>

<td colspan=6>
<script type="text/javascript">
<!--
function willMoveImages(msg) {
confirmWindow = window.confirm(msg);
if (confirmWindow) return true;
return false;
}
//-->
</script>
<noscript>
<!-- Noscript option -->
</noscript>
<table border=0 width=100%>
<tr>
<td bgcolor=eeeedd colspan=3><a
href=index.php?section=image&action=edit&chooseAlb um=1&album=mu-spin>Go
back to your previous listing</a></td>

</tr>
<tr>
<td bgcolor=ddddee>Image (click to view)</td> <td
bgcolor=ddddee>Click to view image metadata if link is found</td> <td
bgcolor=ddddee>&nbsp;</td>
</tr>
<script type="text/javascript">
<!--

var hasSelectedAlbum = false;

function setHasSelectedAlbum() {
if (!hasSelectedAlbum) hasSelectedAlbum = true;
}

function selectAll(checkState, selectStatus, obj) {
if (document.imageForm.select_all.checked ||
document.imageForm.deselect_all.checked) {
for (i = 0; i < obj.length; i++) {
obj[i].checked = checkState;
}

if (selectStatus.toLowerCase() == 'select')
document.imageForm.deselect_all.checked = false;
if (selectStatus.toLowerCase() == 'deselect')
document.imageForm.select_all.checked = false;
}
}
//-->
</script>
<noscript>
<!-- THERE IS NO NON-JAVASCRIPT EQUIVALENT TO THIS CODE -->

</noscript>
<tr>
<td bgcolor=ffffff><a
href="./images/mu-spin/kyrka.jpg">kyrka.jpg</a></td>
<td bgcolor=ffffff>Show Metadata</td>
<td bgcolor=ffffff><input type=checkbox id="selectable0" name="move[]"
value="kyrka.jpg"> - Move?</td>
</tr>

<tr>
<td bgcolor=ffffcc><a
href="./images/mu-spin/banner.jpeg">banner.jpeg</a></td>
<td bgcolor=ffffcc><a
href=index.php?section=image&action=edit&chooseAlb um=1&album=mu-spin&id=
147>Show Metadata</a></td>
<td bgcolor=ffffcc><input type=checkbox id="selectable1" name="move[]"
value="banner.jpeg"> - Move?</td>
</tr>
<tr>
<td bgcolor=ffffff><a
href="./images/mu-spin/kyrka_gray.jpg">kyrka_gray.jpg</a></td>

<td bgcolor=ffffff><a
href=index.php?section=image&action=edit&chooseAlb um=1&album=mu-spin&id=
145>Show Metadata</a></td>
<td bgcolor=ffffff><input type=checkbox id="selectable2" name="move[]"
value="kyrka_gray.jpg"> - Move?</td>
</tr>
<tr>
<td colspan=3 bgcolor=ddddee>
<input type=checkbox id="checkall" name="select_all" value=1
onClick="selectAll(true, 'select', document.imageForm['move[]'])"> -
Select All&nbsp;&nbsp;

<input type=checkbox id="uncheckall" name="deselect_all" value=1
onClick="selectAll(false, 'deselect', document.imageForm['move[]'])"> -
De-Select All</td>
</tr>
This seems to work across the board! Thanx for the tip on "onClick".
Now to figure out how to determine if the user selected an item from the
dropdown to change hasSelectedAlbum. I can't use the "onChange" event
within the dropdown because the PHP code that generates the dropdown is
shared across multiple instances.

Phil
Phil
---------------------------------------
TCL and PHP: The Superior Web Languages!
javascript: Is Cool
ASP: why?
http://valsignalandet.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 23 '05 #7
JRS: In article <Gg1fc.110637$oR5.109407@pd7tw3no>, seen in
news:comp.lang.javascript, Reply Via Newsgroup <reply-to-
ne*******@please.com> posted at Wed, 14 Apr 2004 02:23:34 :
- I'm a newbie (six months) Lastly - I just learned that a mis-use of eval is common - there are
other methods that you can use that use less resources and faster (for
example, from a numeric point of view you could use something like
parseInt() - Do a search on google groups for a recent message I got
which explains the reasons - search for "why is eval evil" in
comp.lang.javascript for a detailed explanation.


For that, the OP should be referred to the c.l.j newsgroup FAQ. It's
generally better to cite a specific reference rather than to call for a
search.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://jibbering.com/faq/> Jim Ley's FAQ for news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Jul 23 '05 #8

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

Similar topics

3
by: lawrence | last post by:
I haven't been able to reach www.php.net for days. Most of the rest of the web is working for me, though I've bad trouble reaching any English sites. Anyone else having trouble?
4
by: Japhy | last post by:
Hello, I'm am pulling data from a mysql db and want to use the data to populate a <ul. Here are relavent parts of my code : $wohdate = mysql_result($wohRS,$wohndx,woh_date); $woh_display...
59
by: Lennart Björk | last post by:
Hi All, I have a tiny program: <!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>MyTitle</title> <meta...
1
by: jdurden | last post by:
am currently woking on building this site: www.maverick-spirit.com. everything seems to be fine except the press releases page. When you click on one of the press releases in the left column under...
0
by: tsivaraman | last post by:
I am trying to build php-5.2.1 in RedHat Linux 9. I have installed libxml2-2.6.11,mysql-5.0.33,httpd-2.2.4(apache) successfully.When i do 'make' from the php directory,i get the following...
0
by: Yannick | last post by:
Hi, I'm Julien from France, We have recently install a new Web Server for my company The server is composed : - Linux RedHat RHEL4 U4 - Httpd-2.0.52-27.ent - Oracle Database 10.2.0.1
26
by: webrod | last post by:
Hi, I have some php pages with a lot of HTML code. I am looking for a HTML validator tool (like TIDY). TIDY is not good enough with PHP tags (it removes a lot of php code). Do you have any...
0
by: Benjamin Grieshaber | last post by:
Hi, I´m on SuSE 9.3 with xmlrpc-c and xmlrpc-c-devel installed (ver. 0.9.10) I tried to compile php with xmlrpc support and got the following errors: ...
3
by: jaddi1 | last post by:
Hi, I am trying to make a multi-level drop-down menu similar to what is seen here: http://www.cssplay.co.uk/menus/simple_vertical.html. My problem is that some of the menu will be populated from...
4
by: mechphisto | last post by:
I'm working on a friend's box, Fedora Core 6. It has PHP 5.1.6. I need to install mcrypt into it, and the only way I can find to do it is from source then recompile PHP. So I did all that, and got...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.