internet explorer - is smart gwt has performance issue for loading huge data from database? -


I am using smartgwt when I try to load huge data then my Explorer is not running & amp; Getting an error message is that "A script on this page is causing Internet Explorer to slow down. If it is on, your computer may be unresponsive. Do you want to revoke the script ? " There are several ways to load data in the database ... Datasource is powerful and is a good choice when using a large data set.

If you use a datasource, make sure not load the full data in a single request and SmartGWT loads the data on demand. Apart from this, there are several options that can impact performance on large datasets.

Use dynamic loading:

  myGrid.setLoadDataOnDemand (true); // good  

Do not use autofit lines as it must present all the rows:

  listGrid.setAutoFitData (Autofit.BOTH); // Bad, just leave it to the default  

Do not try to present all the data at once:

  grid.setShowAllRecords (true) ; // Bad  

And the last option: You have created an endless loop; -)


Comments