How do I add custom CSS classes to rows in a data grid (Ext.grid.Panel)?
Ext.grid.Panel
I\'m using ExtJS 4.0.
Use simplest way
In your grid use -
cls: 'myRowClass'
Your css -
.myRowClass .x-grid-cell {background:#FF0000 !important; }