Hi,
I am trying to limit the dropdown list that is displayed on the Add/Edit form after I have set a relation to another table. I have tried to set a WHERE on the related table but all values are being pulled in.
The table - $crud->set_table('tbl_ticket_category');
The relation - $crud->set_relation('tc_default_group','tbl_group','group_name');
I am trying to limit the GROUP_NAME list by GROUP_ORG field, and this doesnt have an affect
$crud->where('group_org', $this->org);
Help!!
Thanks