<RadzenGrid Count="@count" Data="@employees" LoadData="@LoadData" AllowPaging="true" AllowFiltering="true" AllowSorting="true" PageSize="10" TItem="Employee" ColumnWidth="200px">
private async void LoadData(LoadDataArgs args)
{
..........
............
}
on the above code, if i try to filter the grid, it will call around 5 times and filter the data and after few seconds it clears the filter. i cant able to do multiple column filter, same thing will be happening on your demo file also. is it bug? Also am using Server side blazor.