I want to list the registers of a table from my database after do a callback_after_update;
Example:
$crud->callback_after_insert(array($this, 'list_another_table($output))')); /* this don't work */
I tried the next one. The last instruction of my function:
$this->centros_management();
/* but don't work */
How can i do?
Thanks a lot
Carlos
callback_after_update
Started by oviedo93, 18 September 2012 - 09:12 AM
- Single Page
Posted 18 September 2012 - 09:12 AM
Posted 18 September 2012 - 18:51 PM
$crud->callback_after_insert (array($this, 'list_all'));
...
public function list_all ($post_array, $primary_key)
{
//Load and call model functions
}