Ok... right....
I develop a controller with this function in my controller
public function istituto_management()
{
if($this->require_min_level(1)) // tramite questa richiesta chiedo il login
{
echo $this->load->view('page_header', '', TRUE);
//$this->_example_output((object)array('output' => '' , 'js_files' => array() , 'css_files' => array()));
}
//echo $this->load->view('examples/page_header', '', TRUE);
$crud = new grocery_CRUD();
$a_Istituto = array('Istituti_Intestazione','Istituti_Indirizzo','Istituti_CAP','Istituti_Citta','Istituti_ResponsabileASL');
$crud->set_table('istituti');
$crud->columns($a_Istituto);
$crud->display_as('Istituti_Intestazione',$this->lang->line('liceo'))
->display_as('Istituti_DescrizioneBreve',$this->lang->line('desbreve'))
->display_as('Istituti_Indirizzo',$this->lang->line('indirizzo'))
->display_as('Istituti_CAP',$this->lang->line('cap'))
->display_as('Istituti_Citta',$this->lang->line('citta'))
->display_as('Istituti_DirigenteScolastico',$this->lang->line('respist'))
->display_as('Istituti_PEC',$this->lang->line('pec'))
->display_as('Istituti_Mail',$this->lang->line('email'))
->display_as('Istituti_Telefono',$this->lang->line('tel'))
->display_as('Istituti_Nazione',$this->lang->line('naz'))
->display_as('Istituti_ResponsabileASL',$this->lang->line('respasl'));
$crud->set_subject($this->lang->line('istituto'));
$crud->fields('Istituti_Intestazione','Istituti_DescrizioneBreve',
'Istituti_Indirizzo','Istituti_CAP','Istituti_Citta',
'Istituti_Nazione','Istituti_DirigenteScolastico','Istituti_ResponsabileASL',
'Istituti_PEC','Istituti_Mail','Istituti_Telefono'); //i campi nel form di add o edit
// posso anche definire i campi in add $crud->add_fields e in edit $crud->edit_fields
$crud->set_rules('Istituti_Mail', 'Mail','valid_email')
->set_rules('Istituti_PEC', 'PEC','valid_email');
$crud->required_fields('Istituti_Intestazione',
'Istituti_DescrizioneBreve','Istituti_Mail','Istituti_DirigenteScolastico','Istituti_ResponsabileASL'); // indica i campi obbligatori
//$crud->set_relation('salesRepEmployeeNumber','employees','lastName');
if ($this->auth_role != 'Admin') {
$crud->unset_add();
$crud->unset_delete();
$crud->unset_export();
$crud->unset_print();
}
$output = $crud->render();
$this->_example_output($output);
}
and when I tried to save the record the result is displayed in the attach...
I hope it's more clearly now.... please let me know if it's necessary more information or code
thanks in advance
Giuseppe