|
|
@ -25,10 +25,21 @@ $(function () {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(".watch-table tr").click(function (event) {
|
|
|
|
|
|
|
|
var tagName = event.target.tagName.toLowerCase();
|
|
|
|
|
|
|
|
if (tagName === 'tr' || tagName === 'td') {
|
|
|
|
|
|
|
|
var x = $('input[type=checkbox]', this);
|
|
|
|
|
|
|
|
if (x) {
|
|
|
|
|
|
|
|
$(x).click();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// checkboxes - check all
|
|
|
|
// checkboxes - check all
|
|
|
|
$("#check-all").click(function (e) {
|
|
|
|
$("#check-all").click(function (e) {
|
|
|
|
$('input[type=checkbox]').not(this).prop('checked', this.checked);
|
|
|
|
$('input[type=checkbox]').not(this).prop('checked', this.checked);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// checkboxes - show/hide buttons
|
|
|
|
// checkboxes - show/hide buttons
|
|
|
|
$("input[type=checkbox]").click(function (e) {
|
|
|
|
$("input[type=checkbox]").click(function (e) {
|
|
|
|
if ($('input[type=checkbox]:checked').length) {
|
|
|
|
if ($('input[type=checkbox]:checked').length) {
|
|
|
|