http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11127

--- Comment #3 from Owen Leonard <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to