I wanted to share this extension I've made that might help you to speed things up.
Quick Documentation:
$gc->callback_post_render(array($this,'edit_body')); public function edit_body($output) { $output->output.='Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; //This just adds the text to the end of the generated html return $output; }

$this->load->library('grocery_crud'); $this->load->library('extension_grocery_CRUD'); $crud = new Extension_grocery_CRUD(); //This goes INSTEAD of the "new Grocery_CRUD();"
With this, you will have all the GC functions plus the ones listed above.
---------------------------------------------------------------------------------
https://github.com/g...on_grocery_crud
---------------------------------------------------------------------------------
