⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠

  •     

profile picture

how implement callback on read/view



chrisjesss

chrisjesss
  • profile picture
  • Member

Posted 22 April 2015 - 20:44 PM

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

 


skekeu

skekeu
  • profile picture
  • Member

Posted 23 April 2015 - 13:37 PM

Hi!

 

You should use the callback_read_field

The solutuin is here: http://www.grocerycr...he-read-method/