Print Page | Close Window

Can checkall but can’t invert

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: General Discussion
Forum Description: General discussion and chat on any topic.
URL: https://forums.webwiz.net/forum_posts.asp?TID=3593
Printed Date: 29 March 2026 at 5:00pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Can checkall but can’t invert
Posted By: ngaisteve1
Subject: Can checkall but can’t invert
Date Posted: 17 June 2003 at 1:10am
I have a little problem with my check all javascript here. When I click the master checkbox, all the dynamic generated checkbox will be selected and that's good. But, when I click the master checkbox once again to deselect it, those little checkbox didn't deselect except the first one.

The master checkbox code is below:
<input type="checkbox" onClick="SetChecked(1,'chkSample');" >

The Javascript is below:
function SetChecked(val,chkName) {
dml=document.forms[form];
len = dml.elements.length;
var i=0;
for( i=0 ; i<len ; i++) {
if (dml.elements.name==chkName) {
dml.elements.checked=val;
}
}
}

Thanks for the help.



Replies:
Posted By: ljamal
Date Posted: 17 June 2003 at 1:44am
Here the function I use where field is the name of all the checkboxes

<input type="checkbox" name="chkAll" onClick="checkAll(field);">

<script language="JavaScript">
<!-- Hide from older browsers
//Function to check or uncheck all the checkboxes
function checkAll(field)
{
      if (field.length > 0) {
          for (i = 0; i < field.length; i++)
               field.checked = document.Delete.chkAll.checked ;
          }
      else {
               field.checked = document.Delete.chkAll.checked ;
          }
}
// -->
</script>

-------------
L. Jamal Walton

http://www.ljamal.com/" rel="nofollow - L. Jamal Inc : Web/ Print Design and ASP Programming


Posted By: abhinav
Date Posted: 19 June 2003 at 5:16am
wsabstract.com is a good javascript resource. check it out

-------------
http://www.sgkabra.com - Accountancy Firm | http://www.mp3oldies.com.ar - Mp3 Oldies | http://www.best-mp3software.com - Mp3 Software



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net