check_all
Directory actions
More options
Directory actions
More options
check_all
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Check all
by Matthew McNaney
-----------------------------------------------------------------
This script makes a "Uncheck / Check all" button for a specific array of
check boxes. The example is below.
-------------------------- Example -------------------------------
<input type="checkbox" name="color[]" value="red" /> Red
<input type="checkbox" name="color[]" value="blue" /> Blue
<input type="checkbox" name="color[]" value="yellow" /> Yellow
<?php
echo javascript('check_all', array('checkbox_name' => 'color'));
?>
--------------------------- End ----------------------------------
The default switch is a button. You may use a checkbox switch instead
by setting the 'type' to 'checkbox':
javascript('check_all', array('checkbox_name' => 'color',
'type' => 'checkbox'));