DataGrid LoadData Not Called

I was using the datagrid with LoadData version 5.08, the page has a huge amount of data which slows rendering to get around this I used paging with LoadData to just display part of the results set at a time. The data was fetched in OnInitializedAsync I then set the DataGrid Count property to the number of records which caused LoadData to be called. This has stopped working and I now also have to populate some dummy items in the backing Data to force it to execute. Using Reload on the grid does not fix the problem

The latest 5.x version is 5.9.9 - try it.

I have used the latest version (6.05) and it does not work, you have to provide some data first, so I provide dummy items, it then calls LoadData and I replace them. Surely it should call LoadData for the initial grid data and I should be be able to provide a Count of zero and an empty collection of data.

Our demo for LoadData works normally.

Issue starts with version 5.55

Again, check our demo for LoadData - the variable assigned to Data is null by default and LoadData it’s called.

I ran into this problem when data was initialized to an empty data set but resolved it by setting the data to null.