vote up 2 vote down star
2

I have html page with multiple checkboxes

I need one more checkbox by name "select all" . when i select this checkbox all checkboxes in html pages must be selected. can anybody helpme.

flag

0% accept rate
If you want to degrade gracefully, selecting the "select all" should actually mean that all are selected regardless of their individual state. (visiting your page with javascript disabled) – some Dec 22 '08 at 17:09

4 Answers

vote up 0 vote down

Here's a bit of code that does the trick and is unobtrusive too

/**
 * Function which adds "checkall" functionality to
 * a group of checkboxes contained in an element with an
 * id sent in the parameter "containerId"
 * The controller checkbox is contained in an element with
 * an id sent in the parameter "controllerContainerId"
 * The controllerContainer can initially have a style of
 * display: none and it will be revealed on successful execution.
 * The controllerContainer can be contained in the container element
 * but this isn't necessary
 */
function createCheckAll( containerId, controllerContainerId ) {
    try {
    	var container = document.getElementById( containerId );
    	var controllerContainer = document.getElementById( controllerContainerId );
    	var controller = controllerContainer.getElementsByTagName( "input" )[0];
    	var allEls = container.getElementsByTagName( "input" );
    } catch( e ) {
    	return;
    }
    var els = [];
    for( var i = 0, l = allEls.length; i < l; i++ ) {
    	var thisEl = allEls[i];
    	if( thisEl.type == "checkbox" && thisEl != controller ) {
    		els.push( thisEl );
    	}
    }
    controllerContainer.style.display = ( /div|blockquote|p|h[1-6]|li|dt/i.test( controllerContainer.tagName ) ) ? "block" : "inline";
    container = controllerContainer = allEls = null;
    controller.onclick = function() {
    	for( var e in els ) {
    		els[e].checked = this.checked;
    	}
    }
}

/**
 * Example
 * <div id="checkboxes">
 *     <input type="checkbox"> One<br />
 *     <input type="checkbox"> Two<br />
 *     <input type="checkbox"> Three<br />
 *     <span id="checkboxall" style="display: none">
 *         <input type="checkbox"> Check All<br />
 *     </span>
 * </div>
 * <script type="text/javascript">
 *     createCheckAll( "checkboxes", "checkboxall" );
 * </script>
 */
link|flag
not very intuitive to read – Guido García Jan 13 at 8:09
vote up -1 vote down

I tried the java script you hVE GIVEN

But how to get the know whether a particular checkbox is checked in doPost method

link|flag
vote up 11 vote down
<script language="JavaScript">
function toggle(source) {
  checkboxes = document.getElementsByName('foo');
  for each(var checkbox in checkboxes)
    checkbox.checked = source.checked;
}
</script>

<input type="checkbox" onClick="toggle(this)" /> Toggle All<br/>

<input type="checkbox" name="foo" value="bar1"> Bar 1<br/>
<input type="checkbox" name="foo" value="bar2"> Bar 2<br/>
<input type="checkbox" name="foo" value="bar3"> Bar 3<br/>
<input type="checkbox" name="foo" value="bar4"> Bar 4<br/>
link|flag
+1 for use of obscure for-each-in construct :) – porneL Dec 22 '08 at 16:00
vote up 1 vote down

JavaScript is your best bet. The link below gives an example using buttons to de/select all. You could try to adapt it to use a check box, just use you 'select all' check box' onClick attribute.

Javascript Function to Check or Uncheck all Checkboxes

This page has a simpler example

http://www.htmlcodetutorial.com/forms/_INPUT_onClick.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.