I am trying to create a grid, each row having a different style(font, color, background color, etc). The styles are in an array of strings, (each having css code), the same length as the number of rows in the grid. My problem is that I can't find a solution to set each row's style to the styles stored in my array. The grid I created looks like this:
newGrid = Ext.create('Ext.ux.Grid', {
store: tableStore,
columns: gridColumns,
});
and the array looks pretty much like styles[]
Any help would be greatly appreciated!