$crud = new grocery_CRUD();
$crud->set_table('usuario');
$output = $crud->render();
$this->_example_output($output);
With this I get 10 results in mygrid, now my question .... If I want to get all users except the user with ID 1, as I should?
I need to change the model? (grocery_crud_model.php)
regards