UI - Watch Table - Clicking anywhere on the watch list row table also activates the operations buttons and checkbox

pull/1641/head
dgtlmoon 2 years ago
parent 52f2c00308
commit 72a415144b

@ -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) {

Loading…
Cancel
Save