Replies: 1 comment 1 reply
-
In the <FluentDataGrid Items="@People" ShowHover="@SelectFromEntireRow" TGridItem="Person"
OnRowClick="@(e => Console.WriteLine($"Row {e.RowIndex} clicked"))"
OnCellClick="@(e => Console.WriteLine($"Cell on column {e.GridColumn} clicked"))">
|
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
Uh oh!
There was an error while loading. Please reload this page.
-
DataGrid.OnRowClick
sends event even when SelectColumn is clicked. This is not normal behavior. All SelectColumn events should be handled by it only. How do I solve this?Beta Was this translation helpful? Give feedback.
All reactions