Hello everybody,
I am facing an issue with the DataGrid. Using Rebind on the Grid it calls the OnRead Method I supplied and inside I get async Data (awaited) set args.Data and args.Total (paged) and the initial call works, showing 3 rows. With the next call (filtered) I can see only 1 row getting retured which is what I want, but the grid still shows all 3 and a loading indicator which never goes away. No Exceptions, the code runs through inside my ReadItems method. No idea what is wrong here:
<TelerikGrid @ref="@vm.GridRef"
TItem="ListenElementReltestsElternViewModel"
OnRead="@vm.ReadItems" >...
public async Task ReadItems(GridReadEventArgs args)
{
args.Data = await GetData(currentFilter, CurrentFilterAusdruck);
args.Total = 3; // correct for the testcase
}