2016-08-21 20:14:09 +02:00
|
|
|
/**
|
|
|
|
* Runs through the DOM under the element with the given id, finds all
|
|
|
|
* checkboxes and sets them to the wanted state.
|
2017-01-02 15:43:36 +01:00
|
|
|
*
|
2016-08-21 20:14:09 +02:00
|
|
|
* @param String
|
|
|
|
* id Id of the element containing all the checkboxes
|
|
|
|
* @param Boolean
|
|
|
|
* checked True if the checkboxes should be checked
|
|
|
|
*/
|
|
|
|
function checkAll(id, checked) {
|
2017-01-02 15:43:36 +01:00
|
|
|
var obj = document.getElementById(id);
|
|
|
|
var boxes = obj.getElementsByTagName("input");
|
|
|
|
for (var i = 0; i < boxes.length; i++) {
|
|
|
|
if (boxes[i].type === "checkbox" && !boxes[i].disabled) {
|
|
|
|
boxes[i].checked = checked;
|
|
|
|
}
|
|
|
|
}
|
2011-12-27 22:13:17 +01:00
|
|
|
}
|
2014-12-06 21:39:59 +01:00
|
|
|
|
2017-01-02 15:43:36 +01:00
|
|
|
$(function () {
|
|
|
|
/**
|
|
|
|
* Disable every submit button after clicking (to prevent double-clicking)
|
|
|
|
*/
|
|
|
|
$("form").submit(function (ev) {
|
|
|
|
$("input[type='submit']").prop("readonly", true).addClass("disabled");
|
|
|
|
return true;
|
|
|
|
});
|
2014-12-06 21:39:59 +01:00
|
|
|
});
|