posted 11 years ago
During GWT Table rendering, for each Table cell, we use the below API:
1. com.google.gwt.user.client.ui.Grid.getCellFormatter().setStyleName
2. com.google.gwt.user.client.ui.Grid.setWidget(row, column, new CATableEditableCell(this, row, column, data)) or setWidget(row, column, (Widget)o)
3. com.google.gwt.user.client.ui.Grid.setHTML(row, column, datalink);
Here are the Observations while using IE vs Fireforx:
1. It takes an average of 50-60 millis to format a cell in table where as in FF it is taking 0-5 millis
2. With this overall table painting is taking time when huge data is there/painted in the table
Is it a known phenomena or can IE be optimized further. If yes, can you please suggest any?
Thanks,
Naveen.