Hi Kannan,
In cellsrenderer, you can have a flag variable set to true when the data has just been updated, which allows the cellsrenderer to colour the cells. After a certain time has passed, set the variable to false and call the grid’s render method, which will invoke cellsrenderer, but the flag, being set to false, will not colour the cells. The cellsrenderer code can be something like this:
var cellsrenderer = function(row, columnfield, value, defaulthtml, columnproperties, rowdata) {
if (flag === true) {
return '<span style="margin: 4px; float: ' + columnproperties.cellsalign + '; color: #ff0000;">' + value + '</span>';
} else {
return '<span style="margin: 4px; float: ' + columnproperties.cellsalign + ';">' + value + '</span>';
}
}
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/