I need to have different the displaying label for column names in the list in display_as a different in form using set_rules.
But the specified label in set_rules will not be displayed on the form. There will be displayed a column name specified in display_as.
When is entered a name column in set_rules, so it does not appear.
$this->grocery_crud->columns('datum', 'nadpis_zk');
$this->grocery_crud
->display_as('datum', 'Datum')
->display_as('nadpis_zk', 'Nadpis');
$this->grocery_crud
->set_rules('nadpis_zk','Nadpis zkráceny', 'trim|required|max_length[50]|callback_pomlcky')
->set_rules('nadpis_cl','Nadpis celý', 'trim|required|callback_pomlcky');
This error is seen in the example to set_rules too.