here is my very simple code where I added set_subject();
what is wrong here?
I am still seeing "Add Record", "Edit Record"... instead of the expected "Add Listing", "Edit Listing"....
function bam_listings()
{
$crud = new grocery_CRUD();
$crud->set_table('listings');
$crud->set_subject('Listing');
$crud->set_theme('datatables');
$output = $crud->render();
$this->_example_output($output);
}
using v 1.5.2
thanks