using default set_theme
The field where you can search the table with does not show in the top right as it does in this example.
http://www.grocerycr.../set_a_relation
here is the function from my controller
function customers()
{
$crud = new grocery_CRUD();
$crud->set_table('customers');
$output = $crud->render();
$page = 'customers';
$data['title'] = ucfirst($page); // Capitalize the first letter
$this->load->view('templates/header', $data);
$this->_example_output($output);
$this->load->view('templates/footer', $data);
}
Thanks!