I'm trying to do this on a sql TEXT column.
$crud->callback_column('comments',array($this,'_callback_fancybox_comments'));
and it goes to this code:
function _callback_fancybox_comments($value,$row)
{
return "<a href=".site_url('main')."/fancybox_comments/$row->node_id class='various fancybox.ajax'>$value</a>";
}
problem is, that without this callback the textfield is snipped short. How can I achieve that when doing a callback and using $value?