vote up 0 vote down star

The data for my table is held within the table model. Table rows should be colored white or gray. Looking only at a certain column, if the cell's value of the current row is incremented by 1 compared to the previous one the color should switch. I seem to have accomplished this by overriding the prepareRenderer method. However, the user can decide to filter rows in the table. I have also managed to use a filter for the table that works. However, after filtering rows color should be rerendered since some rows could be omitted and the policy of one row's color depending on the previous still holds. What is the best way to accomplish this?

flag
I don't understand the way you've phrased the question. If you want alternating rows to have different colors, then you assign the color based on whether row % 2 == 0. You don't have to do anything to the data. What's your actual question? – Jonathan Feinberg Oct 18 at 13:09

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.