The color change in the column
- Single Page
Posted 07 October 2012 - 20:46 PM
I would like to change the color display in one of the columns.
...
$crud->callback_column('Price',array($this,'color'));
...
function color($value, $row)
{
return $row->Price.'<style="color:green"/>';
}
but this does not work..
Do I need to change something in the file datanbles.css?
Is incorrectly formulated the code?
liludallas
Posted 08 October 2012 - 06:49 AM
{
return '<span style="color:red">demo text<span>'
}
?>
Posted 08 October 2012 - 11:07 AM
return '<span style="color:green"><span>'.$row->Cena;
Of course, thank you Victor
Jacek