Hi,
Thank you to everyone for your answers. They was useful to open my mind.
Most of my problems are on setTableModel, but I never change the model after
it is set the first time. I missed that it is possible to set the model by
means of the table constructor.

In order to help other newbies to avoid my errors here what is wrong in my
Table subclass constructor:

construct: function() {
          this.base(arguments);
          var tableModel  = new myApp.myTableModel();
          this.setTableModel(tableModel);
}

while the faster/right way is:

construct: function() {
          var tableModel  = new myApp.myTableModel();
          this.base(arguments,tableModel);
}


with this change it seems almost ok for Internet Explorer 8.


-- 
View this message in context: 
http://www.nabble.com/Internet-Explorer-performance-tp23133977p23153260.html
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to