Change cell background color with server side processing enabled
Change cell background color with server side processing enabled
niemand23
Posts: 4Questions: 2Answers: 0
Hi there,
After enabling server side processing, I am unable to change the background color of some cells based on their values. This is what I am using for changing the background color for cell 17 for example if it has the value 'OK' without any result:
"rowCallback": function( row, data, index ) {
if ( data[16] == "OK" ) {
$("td:eq(16), row").css("background-color","green");
}
Do you have any ideas why this is not working anymore?
This discussion has been closed.
Answers
I think you mean:
!
Allan