Hello!
I've got List grid with SummaryRowDataSource (see code below)
I see non-optimal behavior of this grid:
1) Right after creation grid fetches summary row two!!! times.
2) Grid repeatedly fetches summary row on scroll each time when new portion of data is requested from server.
In my case I need summary row to be fetched only once. How can I achieve that?
The code:
I've got List grid with SummaryRowDataSource (see code below)
I see non-optimal behavior of this grid:
1) Right after creation grid fetches summary row two!!! times.
2) Grid repeatedly fetches summary row on scroll each time when new portion of data is requested from server.
In my case I need summary row to be fetched only once. How can I achieve that?
The code:
Code:
grid.setAutoFetchData(true); grid.setCanEdit(false); grid.setDataSource(StatisticsDS.getInstance()); grid.setSummaryRowDataSource(SummaryStatisticsDS.getInstance()); grid.setShowGridSummary(true);
Comment