mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 05:43:46 +01:00
Modernize option selection
This commit is contained in:
parent
9e0d3359b0
commit
47487c4d61
@ -2,7 +2,7 @@ function selectSelectAll_click(e) {
|
|||||||
const ctrl = $(e.target).next()
|
const ctrl = $(e.target).next()
|
||||||
if (ctrl.prop('type') == 'select-multiple') {
|
if (ctrl.prop('type') == 'select-multiple') {
|
||||||
ctrl.find("option").each(function () {
|
ctrl.find("option").each(function () {
|
||||||
$(this).attr('selected', 'selected');
|
$(this).prop('selected', true);
|
||||||
ctrl.trigger("change")
|
ctrl.trigger("change")
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user