Hello
I'm using Telerik.UI.for.Blazor 3.6.0
I would like to make async query on TelerikFilter ValueChanged EventCallback ( change found items count ) but when i change my implementation
from
private void OnFilterValueChanged(CompositeFilterDescriptor filter){
//code here
}
to
private async Task OnFilterValueChanged(CompositeFilterDescriptor filter){
//code here validation and get filteringRules
int count = await dispatcher.QueryAsync(new CountItemsQuery(filteringRules));
//code here
}
TelerikFilter stop working properly
When i add second filter condition and then i would like remove it nothing hapens (GUI do not reload)
Second try remove filter condition throws Exception: Index was out of range.
Am i doing something wrong or it's error?
Best regards