• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Rendering/painting in IE8/IE9 is slow when compared to FireFox(21.0) and Chrome(Version 27.0.1453.11

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the Ranch
Consider using FlexTable or CellTable instead
 
reply
    Bookmark Topic Watch Topic
  • New Topic