how to implement quick edit using add action, i want to put my call back function on my add_action button to
to update my record in one click.. please help.
$crud->callback_before_update(array($this,'callback_deducted'));
}
function callback_deducted($post_array)
{
$post_array['datereturned'] = date('Y-m-d');
$post_array['action'] = ('returned');
return $post_array;
}