Hi!, maybe you can help me. I'm migrating an application in CI3 from community version to enterprise. I can't get the actions to work. As an example:
$crud->add_action('Personal & Equipos','','operaciones/personal_equipos_detalle','','');
$crud->callback_column('monto',array($this,'_callback_monto'));
function _callback_monto($value, $row)
{
$total= $row->monto_transporte+
$row->monto_servicios+
$row->monto_materiales;
return '<div class="font-weight-bold">'.$total.'</div>';
}
Thanks in advance.
