I applied a renderer to my grid-column, but the background color is not changing:
renderer: function(value, meta) {
if (parseInt(value) > 0) {
meta.tdCls = 'category-matching'; return value;
}
else {
meta.tdCls = 'category-not-matching'; return value;
}
}
css:
.x-grid-cell .category-matching {
background-color:green;
}
.x-grid-cell .category-not-matching {
background-color:red;
}
I also tried
.grid-cell-inner
and
background-color:red; !important
but no effect.
Any idea?
Try this...
It works for me.
refer to these example
CSS:
Try
you can set style in class like this:
js:
css:
Inspired by Select Smile... this worked for me:
and the field
that's it.
ps. done under ExtJS v2.2.1