Fix selection in filter field
parent
a478c50681
commit
b1d0776ad1
|
@ -15,7 +15,7 @@ $(document).ready(function() {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// Select checkbox by click on parent tr
|
// Select checkbox by click on parent tr
|
||||||
$(document).on('click', 'tr', function(e) {
|
$(document).on('click', 'tbody>tr', function(e) {
|
||||||
if (e.target.type == "checkbox") {
|
if (e.target.type == "checkbox") {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -15,7 +15,7 @@ $(document).ready(function() {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// Select checkbox by click on parent tr
|
// Select checkbox by click on parent tr
|
||||||
$(document).on('click', 'tr', function(e) {
|
$(document).on('click', 'tbody>tr', function(e) {
|
||||||
if (e.target.type == "checkbox") {
|
if (e.target.type == "checkbox") {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue