Hello,
I am new with CodeIgniter and Grocery CRUD and I am doing my first project.
My problem is this:
When somebody add a new entry I would like to hide 'tecnician' input and update DB with a default value.
Tecnician will be a select option only visible and editable in edit option.
$crud->add_fields('date', 'type', 'title', 'description', 'state');
$crud->edit_fields('date', 'type', 'title', 'description', 'state', 'tecnician');
Some idea about it?
Thank you