hello everyone,
I have set up table title for flexgrid theme,you just need to replace following files:-
1.assets\grocery_crud\themes\flexigrid\viewslist_template.php (6.48KB)
2.application\libraries[attachmentgrocery_crud.php (145.53KB)
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 !!!!!