Thanks
Suppose that there is a Blazor page based on AbpCrudPageBase in which Blazorise Datagrid is included. I would like to know how to implement Blazorise Datagrid filter. I tried as follow but not working.
<DataGrid TItem="TownshipDto" Data="Entities" ReadData="OnDataGridReadAsync" Filterable="true" FilterMethod="DataGridFilterMethod.Contains" Responsive="true">
It tries to call Web API but there is no field name parameters in API call.
Thanks