|
Lines 185-195
Link Here
|
| 185 |
$(document).ready(function() { |
185 |
$(document).ready(function() { |
| 186 |
$("#selectall").click(function(e){ |
186 |
$("#selectall").click(function(e){ |
| 187 |
e.preventDefault(); |
187 |
e.preventDefault(); |
| 188 |
$(".records").checkCheckboxes(); |
188 |
$(".records").checkCheckboxes(":input[type='checkbox']:not(:disabled)"); |
| 189 |
}); |
189 |
}); |
| 190 |
$("#clearall").click(function(e){ |
190 |
$("#clearall").click(function(e){ |
| 191 |
e.preventDefault(); |
191 |
e.preventDefault(); |
| 192 |
$(".records").unCheckCheckboxes(); |
192 |
$(".records").unCheckCheckboxes(":input[type='checkbox']:not(:disabled)"); |
| 193 |
}); |
193 |
}); |
| 194 |
$("#selectwithoutitems").click(function(e){ |
194 |
$("#selectwithoutitems").click(function(e){ |
| 195 |
e.preventDefault(); |
195 |
e.preventDefault(); |
| 196 |
- |
|
|