mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 19:15:03 +00:00
fixed host pool member sorting
This commit is contained in:
parent
301b8ce83c
commit
f94ce33334
7 changed files with 89 additions and 27 deletions
|
|
@ -132,6 +132,10 @@ class DataTableUtils {
|
|||
for (let filter of filters) {
|
||||
|
||||
const $entry = createEntry(filter.label, filter.key, (e) => {
|
||||
// if the filter have a callback then call it
|
||||
if (filter.callback) {
|
||||
filter.callback();
|
||||
}
|
||||
tableAPI.column(columnIndex).search(filter.regex, true, false).draw();
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue