Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote
When having two separate Grid events on the same SfGrid, only one of them gets triggered (O
nRecordDoubleClick does not get triggered
):
<GridEvents OnRecordDoubleClick="RecordDoubleClickHandler" TValue="PersonModel"><
GridEvents>

<GridEvents OnActionComplete="ActionComplete" TValue="PersonModel"><
GridEvents>


Both of them get triggered if you put them both in one GridEvents:
<GridEvents OnRecordDoubleClick="RecordDoubleClickHandler" OnActionComplete="ActionComplete" TValue="PersonModel"><
GridEvents>
so it's an easy fix to get around the problem.  It fired both of them on separate lines in version 18.1.0.59.  Stopped working in version 18.2.0.x