i'm a newbie of grocerycrud
I need help to upload images in a folder, This is the code i used :
$crud = new grocery_CRUD();
$crud->set_theme('twitter-bootstrap');
$crud->set_table('news');
$crud->set_subject('News');
$crud->required_fields('titolo');
$crud->add_fields('titolo','testo','autore','attivo');
$this->config->set_item('grocery_crud_file_upload_allow_file_types', 'gif|jpeg|jpg|png');
$crud->set_field_upload('image1','assets/uploads');
$crud->set_field_upload('image2','assets/uploads');
$crud->set_field_upload('image3','assets/uploads');
$crud->callback_after_upload(array($this,'callback_after_upload'));
$output = $crud->render();
but the buttons to upload images (image1,image2,image4) doesn't appear.
where is the mistake?