Hi @PCFDeveloper03 ,
In my use case, I show the data in a calendar. Not sure if it's the best approach, but I use the init to set
context.parameters.dataset.paging.setPageSize(0);
and when the month is changed in my calendar, I retrieve the data:
dataset.filtering.setFilter(...); //I set the filter on my current month
dataset.paging.setPageSize(5000);
dataset.refresh();
Not exactly the same use case, but I should have the same problems like you. It still works for me.
Maybe there was an update that I've didn't got already.
Maybe you can investigate this:
- I think you need a dataset.refresh() after you change the paging size.
- Do you change the filter of your dataset? Can you comment that?
- Maybe there weren't so many records in your entity a few days ago, and that's why you didn't get the error until now?
- Can you track the requests in the Network Protocol? Maybe you get to see there, what is the fetchXml that is actually been used and what's the response there?
Hope it helps to find the problem.
Kind regards,
Diana