Try integrating with AutoFilterer #4081
Unanswered
ParsaGachkar
asked this question in
Q&A
Replies: 2 comments 1 reply
-
I'm not sure how AutoFilterer works, But Blazorise DataGrid doesn't have any opinion on where or how you will connect to a third-party data source. With DataGrid API, we give you all information about the current state of the grid, along with the filters applied. You can see our example https://blazorise.com/docs/extensions/datagrid/binding-data. Look for Large Data section. I guess you will somehow have to translate the fields in the |
Beta Was this translation helpful? Give feedback.
1 reply
-
Did you try to use eg. private async Task OnReadData( DataGridReadDataEventArgs<Employee> e )
{
// this will contain the filter data for the column
var searchValue = e.Columns[0].SearchValue;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using AutoFilterer in my backend! I was wondering how to integrate BlazoriseDataGrid to Auto Filterer?! Can't find anything about remote filtering api for BlazoriseDataGrid!!!
Beta Was this translation helpful? Give feedback.
All reactions