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

15 lines
372 B
JavaScript

function selectSelectAll_click(e) {
const ctrl = $(e.target).next()
selectSelectAll(ctrl)
}
function selectSelectAll(target) {
if (target.prop('type') == 'select-multiple') {
const old=target.val()
target.find("option").each(function () {
$(this).prop('selected', true);
});
if (old!==target.val()) {
target.trigger("change")
}
}
}