Is it possible to override the FluentDataGrid methods? #2231
Answered
by
vnbaaij
artur-michalak
asked this question in
Q&A
-
Is it possible to inherit from FluentDataGrid? public new async Task RefreshDataAsync()
{
Loading = true;
await base.RefreshDataAsync();
} to trigger the loading indicator every time someone has to interact with the grid. Thank you for your time :) |
Beta Was this translation helpful? Give feedback.
Answered by
vnbaaij
Jun 20, 2024
Replies: 2 comments 1 reply
-
No, the class and/or methods have not been declared as abstract/virtual so can not be overridden. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
artur-michalak
-
Will there be such an option in the future? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No, the class and/or methods have not been declared as abstract/virtual so can not be overridden.