Displaying 3 results from an estimated 3 matches for "uncheckall".
Did you mean:
_uncheck_all
2006 Apr 24
4
javascript in RoR page - Check ALL/uncheck ALL buttons
...on a form
// Checks and unchecks unlimited number in the group...
// Pass the Checkbox group name...
// call buttons as so:
// <input type=button name="CheckAll" value="Check All"
//onClick="checkAll(document.myform.list)">
// <input type=button name="UnCheckAll" value="Uncheck All"
//onClick="uncheckAll(document.myform.list)">
// -->
<!-- Begin
function checkAll(field)
{
for (i = 0; i < field.length; i++)
field[i].checked = true ;
}
function uncheckAll(field)
{
for (i = 0; i < field.length; i++)
field[i].checke...
2005 Dec 18
1
Multiple selection....
Hi,
I have a table with a paginator and each row displays its own
checkbox.
I want to be able to offer actions like
select_all/deselect_all/select_partial.
The problem how does on record user actions so that the form is
correctly posted once the user hits submit ?
Can anyone point me out to an elegant solution to this common problem
?
Code or article would be great !!
Many
2007 Jul 31
1
check all - check box problem
I am not able to create a check box or a button that can check and
uncheckall the check boxes that i have created. It can be a check box
or button that checks and unchecks all the check boxes.
<form name="czar" action=''<%= url_for(:action => "list_supplier") %>''
method=''POST''>
<% i = 0 %>
<% @ho...