Make sure all fields are searchable on all pages (where this is meaningful) and remove ID column from clients group page.

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2019-12-13 15:59:46 +00:00
parent 70589fa844
commit b025ffd208
6 changed files with 20 additions and 22 deletions

View File

@@ -50,11 +50,11 @@ $(document).ready(function() {
"ajax": "scripts/pi-hole/php/groups.php?action=get_adlists",
order: [[ 1, 'asc' ]],
columns: [
{ data: null },
{ data: null, "orderable": false },
{ data: null, "orderable": false },
{ data: null, "orderable": false },
{ data: null, width: "60px", "orderable": false }
{ data: "address" },
{ data: "enabled", searchable: false },
{ data: "comment" },
{ data: "groups", searchable: false },
{ data: null, width: "60px", orderable: false }
],
"drawCallback": function( settings ) {
$('.editAdlist').on('click', editAdlist);