diff options
author | moisseev <moiseev@mezonplus.ru> | 2024-03-08 19:47:18 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2024-03-08 19:47:18 +0300 |
commit | 72b660061dc0951f8fd4a35003264308617bcec6 (patch) | |
tree | b466bdcc0378484f522c21101b44fbcc733e6203 /interface/js/app/common.js | |
parent | a7776b19ce9bcb71e8309b94bd108274e256aa95 (diff) | |
download | rspamd-72b660061dc0951f8fd4a35003264308617bcec6.tar.gz rspamd-72b660061dc0951f8fd4a35003264308617bcec6.zip |
[WebUI] Add check/uncheck all checkboxes buttons
to table filter dropdowns
Diffstat (limited to 'interface/js/app/common.js')
-rw-r--r-- | interface/js/app/common.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/interface/js/app/common.js b/interface/js/app/common.js index 0364ed0e9..1fc723542 100644 --- a/interface/js/app/common.js +++ b/interface/js/app/common.js @@ -234,5 +234,24 @@ define(["jquery", "nprogress"], return String(string).replace(htmlEscaper, (match) => htmlEscapes[match]); }; + ui.appendButtonsToFtFilterDropdown = (ftFilter) => { + function button(text, classes, check) { + return $("<button/>", { + type: "button", + class: "btn btn-xs " + classes, + text: text, + click: () => { + const checkboxes = ftFilter.$dropdown.find(".checkbox input"); + return (check) ? checkboxes.attr("checked", "checked") : checkboxes.removeAttr("checked"); + } + }); + } + + $("<div/>", {class: "d-flex justify-content-between footable-dropdown-btn-group"}).append( + button("Check all", "btn-secondary", true), + button("Uncheck all", "btn-outline-secondary ms-1") + ).appendTo(ftFilter.$dropdown); + }; + return ui; }); |