hi,
I wonder if anyone has used a field type sex for inserting and updating.
It works for insertion.
$crud->callback_add_field('Sex',array($this,'add_field_sex'));
function add_field_sex()
{
return '<input type="radio" name="EleveSex" value="Madame"/> Madame
<input type="radio" name="EleveSex" value="Monsieur"/> Monsieur';
}
One idea for the update form ?