I took a look at the documentation for set_field_upload() and I am not sure that this is what I think it is. I copied this code from the examples:
$crud->set_field_upload('file_url','assets/uploads/files');
$this->config->set_item('grocery_crud_file_upload_allow_file_types', 'xls');
This seems to allow a field in my database to be the upload filename. Not exactly what I need.
I want a user to be able to have a user upload an excel file and I want to import it into the CRUD (or the table). I just don't see an example of this in the docs.
I also see the jquery_ui() function. What is this for? Is there any example? I'd like to use a Jquery Widget in one part of my code. Are there any examples of the use of this? Am I better off looking at Codeigniter for these situations?
thx