unsetSettings
unsetSettings(void)
The method unsetSettings
is removing the "Settings" button from the datagrid.
Example
$crud->setTable('customers');
$crud->setSubject('Customer', 'Customers');
$crud->columns(['customerName','phone','addressLine1','creditLimit']);
$crud->unsetSettings();
$output = $crud->render();