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

@@ -30,10 +30,10 @@ $(document).ready(function() {
order: [[ 1, 'asc' ]],
columns: [
{ data: "id", width: "60px" },
{ data: "enabled" },
{ data: "enabled", searchable: false },
{ data: "name" },
{ data: "description" },
{ data: null, width: "60px", "orderable": false }
{ data: null, width: "60px", orderable: false }
],
"drawCallback": function( settings ) {
$('.deleteGroup').on('click', deleteGroup);