lildent

Results 2 comments of lildent

``` private async updateViewAsync(context: ComponentFramework.Context) { if (!context.parameters.entityDataSet.loading) { if (context.parameters.entityDataSet.paging != null && context.parameters.entityDataSet.paging.hasNextPage == true) { //set page size context.parameters.entityDataSet.paging.setPageSize(5000); //load next paging context.parameters.entityDataSet.paging.loadNextPage(); } } ``` I...

Seems the above works fine, it will keep loading untill all the records are there in the dataset