10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 18:06:06 +02:00
QUESTDB_website/static/js/nestedCheckbox.js

24 lines
757 B
JavaScript
Raw Normal View History

2020-01-04 18:07:19 +01:00
function nestedCheckbox_change(e) {
checkbox = e.target;
//Apply children
if (!checkbox.indeterminate) {
var ul = $(checkbox).parent("li").next("ul")
if (ul.length != 0) {
ul.children("li").children("input[type=checkbox]").prop("checked", checkbox.checked);
}
}
//Apply parent
var ul=$(checkbox).parent("li").parent("ul")
var checkbox=$(ul).prev("li").children("input[type=checkbox]")
checkboxes=ul.children("li").children("input[type=checkbox]")
var checkeds=Array.from(checkboxes).map(el=>el.checked)
var scheckeds=new Set(checkeds)
if (scheckeds.size>1) {
$(checkbox).prop("checked",false);
checkbox.prop("indeterminate",true);
}
else{
checkbox.indeterminate=false;
checkbox=scheckeds[0];
}
}