Help me ! how to show radio button & checkbox for CRUD
- Single Page
Posted 02 June 2012 - 20:35 PM
i want show radio button & checkbox for CRUD , and example coding
thank
Posted 28 June 2012 - 17:20 PM
Posted 04 July 2012 - 14:38 PM
$crud->callback_field('require',array($this,'example_callback'));
Then the callback function
function field_callback($value = '', $primary_key = null)
{
return '<input type="checkbox" name="require">';
}