How can I change the row colour in datagrid based upon the severity condition? I'm new to this EXTJS topic. I used to reader to read, store to store and writer to write the data. After fetching all the data into the grid, how can i change the row colour in datagrid based upon the severity condition? Can you explain me too bit with code working?
|
feedback
|
|
you can use the GridView class (Ext.grid.GridView) to manipulate the user interface of the grid. You can also the viewConfig property of the GridPanel. Here is an example:
ps: Example taken from ExtJS API documentations itself The price-fall and price-rise are CSS that have background colors set accordingly. eg:
| |||||||||||
feedback
|
|
You can do it by using the Quoted example from API documentation:
| |||
|
feedback
|
|
You could use a renderer for your column from your column model and then assign a css class like this: so, the customRenderer function: `
}` And then your column:
Then your css could be like this:
| |||||||||||
feedback
|