Grid, AllowDetailView and OnRowClick #1067
zigoruriartezarraga
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a Grid that has AllowDetailView marked as true. Whatever the reason I also need to have the AllowRowClick marked as true (so I handle that event on the top level row). Then when doing click on the see the details column (first column on the grid) the OnRowClick event is also being triggered. I need to see the inner details without triggering the OnRowClick event. Two options... a) either stop the propagation when doing click on the see details column (first column) or b) get the column index when handling the OnRowClick event so I can avoid the handling if the first clicked cell belongs to the first column... is there any ways of doing this so both events are not triggered? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions