I want to remove this button and add another, but the issue here is even when I remove all buttons from the rowactions array still down 2 items appears
code example:
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'rowactions' => array(
'actions' => array(
array(
'type' => 'button',
'css_class' => 'btn show-filter',
'events' => [
'click' => 'list:showFilters:fire'
],
'tooltip' => 'LBL_FILTER',
'icon' => 'sicon-filter',
'acl_action' => 'view',
),
array(
'type' => 'button',
'css_class' => 'btn show-download',
'events' => [
'click' => 'list:download:fire'
],
'tooltip' => 'LBL_FILTER',
'icon' => 'sicon-download',