Hi everyone,
I have this code implemented in my project. The problem is that the browser will crash if there is a huge data that are more than 30k datas when using dataSource.fetchData.
I don't want to use the ListGrid.fetchData because it is using DataBoundComponent. Is there a solution to optimize for fetching using DataSource?
Here's the sample
I have this code implemented in my project. The problem is that the browser will crash if there is a huge data that are more than 30k datas when using dataSource.fetchData.
I don't want to use the ListGrid.fetchData because it is using DataBoundComponent. Is there a solution to optimize for fetching using DataSource?
Here's the sample
Code:
dataSource.fetchData( criteria, new DSCallback() { @Override public void execute( DSResponse dsResponse, Object rawData, DSRequest request ) { LayoutTab.this.listGrid.setData( dsResponse.getData() ); } }, null );
Comment