Hello ,
I add a field of type textarea. In the add form, I can see the text area field format, but not in the update form.
Here is my code. I wonder if you have an idea? Thank you
$crud->callback_add_field('Observation',array($this,'add_field_text_area'));
function add_field_text_area()
{
return '<textarea rows="4" cols="50" name="comment">
</textarea>';
}