I have a normal CRUD,
public function finalidadeAnimal() { $this->grocery_crud->set_table('finalidade_animal'); $this->grocery_crud->unset_delete(); $output = $this->grocery_crud->render(); $this->load->view('our_template.php', $output); }
But i want that every time i click in a anchor like this :
anchor('/cruds/finalidadeanimal/add/param_animal_id/1', 'Click Here', 'target="_blank"'));
I want to bring the animal's combobox selected with the parameter, in this case is the number 1.
How could i do that in ADD option ????