filters: simplify list row selection for checkboxes
This commit is contained in:
parent
da9f83c4ac
commit
fb64726854
|
@ -1137,7 +1137,7 @@ const Filters = {
|
||||||
|
|
||||||
new dijit.form.CheckBox({
|
new dijit.form.CheckBox({
|
||||||
onChange: function () {
|
onChange: function () {
|
||||||
toggleSelectListRow2(this)
|
$$(".rchk")[0].up("li").toggleClassName("Selected");
|
||||||
},
|
},
|
||||||
}, cb);
|
}, cb);
|
||||||
|
|
||||||
|
@ -1186,7 +1186,7 @@ const Filters = {
|
||||||
|
|
||||||
new dijit.form.CheckBox({
|
new dijit.form.CheckBox({
|
||||||
onChange: function () {
|
onChange: function () {
|
||||||
toggleSelectListRow2(this)
|
$$(".rchk")[0].up("li").toggleClassName("Selected");
|
||||||
},
|
},
|
||||||
}, cb);
|
}, cb);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue