Hi Isomorphic,
I'm using a ListGrid who is connected to a SQLDataSource.
In the corresponding table, I have more than 200K of records, when the grid is loaded I have the following message
By reading post in the forum, I understand why.
What I want, if before doing an operation on the grid, is to check if this one is in progressive loading.
I try whit this
and this
but the both return null.
Is there a way to check if the grid is in progressive loading?
Regards
Julien
I'm using a ListGrid who is connected to a SQLDataSource.
In the corresponding table, I have more than 200K of records, when the grid is loaded I have the following message
Code:
Row count query found 249836 rows, which exceeds the DataSource's progressiveLoadingThreshold of 200000. Switching to progressive loading mode.
What I want, if before doing an operation on the grid, is to check if this one is in progressive loading.
I try whit this
Code:
grid.getProgressiveLoading()
Code:
grid.getDataSource().getProgressiveLoading()
Is there a way to check if the grid is in progressive loading?
Regards
Julien
Comment