I am using Ignited datatables (for codeigniter) and I'm using the server side. I would like to show some values in RED or GREEN depending on their values.
This is how I call the function inside the edit_column:
->edit_column('releve_statut', '$1', $this->label_this('releve_statut'))
And this is the function I'm calling:
public function label_this($str) {
if($str == "Réalisé"){
$r = label_badge('success', 'Réalisé');
} else if ($str == "En cours"){
$r = label_badge('warning', 'En cours');
}
return $r;
}
Any suggestion?
Thanks :)