php - Color row background by its value
one text
Solution:
I thank you for nobodys help, so strugelyng for days on forumes i made a solution from scratches. There were an idea by targeting rows and frocing the rows to insert a class if a specific word is founded and i niserted a function above the script:
rowCallback: function( row, data, index ) {
if ( data[7] == "Ordered" ) {$(row).addClass('green');}
else if ( data[7] == "Shipped" ) {$(row).addClass('orange');}
else if ( data[7] == "Completed" ) {$(row).addClass('red');}
}
also had to make css styles by inserting like this one on inside the ....
<style>
.green{
background-color:#85e085 !important;}
.orange{
background-color:#ffb366 !important;}
.red{
background-color:#ff6666 !important;
}
</style>
I am posting the answer maybe someone is having same issue and it can help a little. if you need anything that belong to this one let me know...
Source