Possible to add row click event on FluentDataGrid? #1827
Unanswered
skillcrushbinguyen
asked this question in
Q&A
Replies: 1 comment 3 replies
-
You can use the <FluentDataGrid OnRowFocus="@HandleRowFocus" ... > ... </FluentDataGrid>
@code {
private void HandleRowFocus(FluentDataGridRow<YourItemType> row)
{
// ...
}
} |
Beta Was this translation helpful? Give feedback.
3 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 finding a way to add row click event on FluentDataGrid. But I can't find anything document talking about this. Any possible way to do this with FluentDataGrid ?
Beta Was this translation helpful? Give feedback.
All reactions