mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixed Multiple ajax calls when filtering
This commit is contained in:
parent
125b827f4f
commit
1546411814
@ -177,7 +177,7 @@ $.fn.datatables_extended_serverside_paging = function (settings , url, dataFilte
|
||||
$(filterColumn.eq(column.index()).empty()).html('<input type="text" class="form-control" placeholder="Search ' + title + '" />');
|
||||
|
||||
//noinspection SpellCheckingInspection
|
||||
filterColumn.eq(column.index()).find('input').on('keyup change', function () {
|
||||
filterColumn.eq(column.index()).find('input').on('keyup', function () {
|
||||
column.search($(this).val()).draw();
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user