Hello,
I have a timestamp field in my database which I want to be displayed as datetime format.
I implemented a callback_column which works fine on the grid view.
$crud->callback_column('created_on',array($this,'clb_timestamp_to_date'));
function clb_timestamp_to_date($timestamp){
return date('d-m-Y H:i:s', $timestamp);
}
But when one clicks on the magnifiying glass to show the single-row-view, there the original timestamp is shown, ignoring the callback.
Could someone please help me out on how to also manipulate the data on the single-row-view?
Any help is much appreciated.
Kind regards,
Chris