Grid EditMode = InCell.
Grid SelectionMode="GridSelectionMode.Single"
SelectedItems="mySelectedItems"
I have a command button in one of my Grid columns.
I have OnRowClick handler for the Grid.
I have GridCommandColum with GridCommandButton and a OnClick command handler.
The grid populates with data, no row currently selected. User clicks on the GridCommandButton and that event gets fired BEFORE the OnRowClick event. Logically this is not correct as the button is contained within the parent which is the Grid, so the OnRowClick should fire first before the OnClick for command button ... I have no way to work around this issue?
UPDATE: correction, the OnRowClick event doesn't fire at all if I click on a GridCommandButton.