Ho there
i have this issue
public function pagamentitipo() { //select table $this->grocery_crud->set_table('PAGAMENTITIPO'); //set subject $this->grocery_crud->set_subject('Forma di Pagamento'); //disable command buttons $this->grocery_crud->unset_add(); $this->grocery_crud->unset_edit(); $this->grocery_crud->unset_delete(); //required fields ( mandatory ) $this->grocery_crud->required_fields('AC_PAGAMENTOTIPO'); //field names $this->grocery_crud->display_as('AC_PAGAMENTOTIPO','Tipo di Pagamento'); $output = $this->grocery_crud->render(); $this->_example_output($output); }
in particular
if you set
$this->grocery_crud->unset_add();
$this->grocery_crud->unset_edit();
$this->grocery_crud->unset_delete();
WILL ALSO DISAPPEAR THE read icon (that i have NOT UNSET)
Thank tou