I am using smartgwt when I try to load huge data then my Explorer is not running & amp; Getting an error message is that 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: Do not use autofit lines as it must present all the rows: Do not try to present all the data at once: And the last option: You have created an endless loop; -) "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.
myGrid.setLoadDataOnDemand (true); // good
listGrid.setAutoFitData (Autofit.BOTH); // Bad, just leave it to the default
grid.setShowAllRecords (true) ; // Bad
Comments
Post a Comment