my datatable is rendered so that items on sale are shaded a different colour when the table is drawn
"createdRow": function ( row, data, index ) {
if ( data.refquality.QualityDescription == 'Sale' ) {
$('td', row).addClass('highlight');
}
},
If I edit a row and set an item to be on sale, this newly edited row is not highlighted unless I refresh the page