Is there a way to make a specific column right-aligned that was rendered by Grocery CRUD?
In my case, I want to specifically right-align the column Bonus Value only.
Your help will be highly appreciated.
In your controller, make the column you want right-aligned a callback column. Then, put some HTML with inline CSS that will right-align your text.
Controller CRUD code:
$this->grocery_crud->callback_column('bonus_value',array($this,'_column_bonus_right_align'));
Callback function in controller:
function _column_bonus_right_align($value,$row)
{
return "<span style=\"width:100%;text-align:right;display:block;\">".$value."</span>";
}