I am using a callback after as user presses the automatic delete button by using this.
$crud->callback_before_delete(array($this,'delete_campaign'));
I do this because I need to clean up some other tables at the same time. What I am finding is that the callback_before_delete is "escaping" the normal redrawing of the CRUD. I can of course just press "reload this page" on the browser and it draws correctly with the record I deleted being removed. But I'd like to get the CRUD to redraw without the user having to re-load. How can I do this at the bottom of my delete_campaign callback?
thx