I am trying to create a Flex Table in GWT with 300+ rows.
I am adding each cell using a Horizontal Widget having the data to be
shown.
The css for the data is added to Horizontal Widget.

This takes almost 3 to 4 minutes in Mozilla. In IE 7 its totally
frozen and does not respond.
Thanks for any inputs.
<code>
FlexTable table = new FlexTable();
HorizontalPanel tickerPanel = new HorizontalPanel();
tickerPanel.setStyleName("Data-Row");
table.setWidget(rowNumber, columnNumber, tickerPanel);
table.getCellFormatter().setStyleName(rowNumber, columnNumber,
styleName);
table.getCellFormatter().setHorizontalAlignment(rowNumber,
columnNumber, HasHorizontalAlignment.ALIGN_CENTER);
</code>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to