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