Custom Filtering for Large Data #2436
Unanswered
louisgurung
asked this question in
Q&A
Replies: 1 comment 2 replies
-
You can manually trigger DataGrid reload. eg. <DataGrid @ref="@dataGridRef" ...>
@code{
DataGrid dataGridRef;
Task OnSomeMethod()
{
return dataGridRef.Reload();
}
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So I called my service, sent search parameter, sort parameter everything on OnReadData as advised for Large Data. The problem is for filtering, I cannot use OnCustomFilter as I want to search all the pages. When I create a TextEdit and bind customFilterValue to it, typing something doesn't trigger datagrid reload but only changing page will give me the correct result.
Beta Was this translation helpful? Give feedback.
All reactions