24 Oct
2013
24 Oct
'13
3:59 p.m.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11127 --- Comment #3 from Owen Leonard <oleonard@myacpl.org> --- Instead of adding the "disabled" attribute to an element which isn't really supposed to have it (according to the specification) I think it would be better to check for the existence of a checked checkbox: var checkedBoxes = $("input:checked"); if ($(checkedBoxes).size() == 0) { alert(MSG_NO_RECORD_SELECTED); return false; } -- You are receiving this mail because: You are watching all bug changes.