I purchased the bootstrap theme and I have a field called active which is a tinyint field with a length of 1 which I use the $crud->field_type('active', 'true_false', array("No", "Yes")); so that it displays Yes / No instead of active / inactive. This all works great until I try and search on the field, if I enter 1 to search on it works as expected but if I enter 0 to search it does not filter out any records even though there are server records with active set to 0.
Anyone come across this and if so any idea how to fix this?