chg: [auditlog] Allow filtering and searching the table
parent
420bbb9207
commit
38a9aa9869
|
@ -31,6 +31,11 @@ class AuditLogsController extends AppController
|
|||
if (!empty($responsePayload)) {
|
||||
return $responsePayload;
|
||||
}
|
||||
$this->set('metaGroup', 'Administration');
|
||||
}
|
||||
|
||||
public function filtering()
|
||||
{
|
||||
$this->CRUD->filtering();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,10 +6,14 @@ echo $this->element('genericElements/IndexTable/index_table', [
|
|||
'children' => [
|
||||
[
|
||||
'type' => 'search',
|
||||
'button' => __('Filter'),
|
||||
'button' => __('Search'),
|
||||
'placeholder' => __('Enter value to search'),
|
||||
'data' => '',
|
||||
'searchKey' => 'value'
|
||||
'searchKey' => 'value',
|
||||
'allowFilering' => true
|
||||
],
|
||||
[
|
||||
'type' => 'table_action',
|
||||
]
|
||||
]
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue