hello everyone,
I have set up table title for flexgrid theme,you just need to replace following files:-
1.assets\grocery_crud\themes\flexigrid\views[attachment=464:list_template.php]
2.application\libraries[attachment[attachment=465:grocery_crud.php]
in controller you can use it as follows:-
function offices_management()
{
try{
$crud = new grocery_CRUD();
$crud->set_theme('flexigrid');
$crud->set_table('offices');
$crud->set_subject('Office');
$crud->set_table_title('Office management');
$crud->required_fields('city');
$crud->columns('city','country','phone','addressLine1','postalCode');
$output = $crud->render();
$this->_example_output($output);
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
cheers !!!!!