I would like to insert some text infront of my DateTime field. I tried the below, it works but I lost the nice datetime pop-up. Is is possible to keep the nice datetime pop-up with prefix? I tried type='DateTime', maybe not the right syntax?
$crud->callback_edit_field('Revised_PickUp_by_Carrier',array($this,'edit_field_callback_2'));
function edit_field_callback_2($value, $primary_key)
{
//add prefix for field
return 'Only if Scheduled Pick-Up has changed <input type="DateTime" value="'.$value.'" name="Revised_PickUp_by_Carrier">';
}