Yes, of course. Actually, what I didn't wrote before as I wanted to keep it simple was, that I have created my own implementation of a celltable (MyCellTable<T> extends AbstractHasData<T>) which is similar to the GWT CellTable with a couple of changes. The best way to describe what I did is to look at the source code of the GWT CellTable.
In my first attempt I tried to set the background color at the end of the CellTable renderRowValues method, and I guess that didn't work because the element I got was from before the CellTable was updated with the new data. I then moved the code into the end of the replaceAllRows method in the inner Impl class of the CellTable. That is the method where the new innerhtml is set on the tbody (there is a ImplTrident class used for IE that implements this a little bit different). Now it works. Regards, Thomas. On Jan 26, 4:40 pm, Miroslav Genov <[email protected]> wrote: > It would be good if you say how you solve it, so if anyone else has the same > problem could look at your solution. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
