Hi good day;
Im working with Ignited Datatables and Im trying to add a callback on edit_column but it's no working it's not making the call just print the 3 parameter :
$this->datatables->edit_column('value','$1','callback_esNulo(value,id)');
and this the function callback
function esNulo($value,$id){
$result= is_null($value) ? "0" : "1";
echo $result;
}
I hope can help me thanks ....