Hi everybody,
this is my question:
I've a float value in my DB
price= 120000
I need to show it formatted into the column price
price
120.000
to do it I use this callback function
$crud->callback_column('price',array($this,'valueToK0'));
of course I put into my column a string, not a number so the sorting function doesn't work: prices values are sorted as string and not as numbers... :(
Is there someone that already solved this issue? HELP Many thanks!