tanky65
Jul 30, 2012, 5:14 PM
is there a way to render the content of a grid-column field blinking under defined conditions, eventually combined with one colour, using js function ?
for instance (all value <= 0 in red and blinking )
var highlight = function (value) {
return Ext.String.format(template, (value > 0) ? "green" : "red", value);
};
MyGridColumn.Renderer.Fn = "highlight "
thanks in advance
for instance (all value <= 0 in red and blinking )
var highlight = function (value) {
return Ext.String.format(template, (value > 0) ? "green" : "red", value);
};
MyGridColumn.Renderer.Fn = "highlight "
thanks in advance