mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 15:10:23 +00:00
WebUIs: remove regex search
The default DataTables2 search is easier for end users Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
parent
76c912083e
commit
ab320c9ecc
11 changed files with 11 additions and 11 deletions
|
@ -445,7 +445,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
handleColVisibilityCheckbox($('#checkColStatus'), 1);
|
||||
handleColVisibilityCheckbox($('#checkColLastLogin'), 2);
|
||||
|
|
|
@ -344,7 +344,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -253,7 +253,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -293,7 +293,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -353,7 +353,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -369,7 +369,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
handleColVisibilityCheckbox($('#checkColStorage'), 1);
|
||||
handleColVisibilityCheckbox($('#checkColQuota'), 2);
|
||||
|
|
|
@ -302,7 +302,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
handleColVisibilityCheckbox($('#checkColMembers'), 1);
|
||||
handleColVisibilityCheckbox($('#checkColDesc'), 2);
|
||||
|
|
|
@ -303,7 +303,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
handleColVisibilityCheckbox($('#checkColMembers'), 1);
|
||||
handleColVisibilityCheckbox($('#checkColDesc'), 2);
|
||||
|
|
|
@ -626,7 +626,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
handleColVisibilityCheckbox($('#checkColStatus'), 1);
|
||||
handleColVisibilityCheckbox($('#checkColLastLogin'), 2);
|
||||
|
|
|
@ -1032,7 +1032,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -432,7 +432,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
filterSearch.off("keyup");
|
||||
filterSearch.on('keyup', function (e) {
|
||||
dt.rows().deselect();
|
||||
dt.search(e.target.value, true, false).draw();
|
||||
dt.search(e.target.value).draw();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue