Hello,
```
<SfGrid DataSource="@Employees" Height="335px" ContextMenuItems="@(new List<object>() { "Edit" })">
<GridEditSettings AllowEditing="true" Mode="EditMode.Dialog"></GridEditSettings>
...
```
(unnecessary code omitted for brevity)
However, upon right-clicking an entry and selecting the "Edit Record" option, a dialog appears with the following message "No records selected for edit operation". It seems like the row wasn't actually being selected since the row changes to grey color on selection.
How should I go about resolving this? Thank you!