Greetings:
For a RadGrid with the following settings;
And a RadContextMenu is configured as shown;
The following occurs when a RadContextMenu is used on the RadGrid;
1) Right click on selected grid row.
2) Context menu appears as expected
3) An item is selected off of the context menu
4) RadGrid_SelectedIndexChanged event is fired
5) RadContextMenu_ItemClick event is fired
How is it possible to use a RadContextMenu when RadGrid_SelectedIndexChanged fires when an item is selected off of the context menu before RadContextMenu_ItemClick fires?
For a RadGrid with the following settings;
<ClientSettings EnablePostBackOnRowClick="true">
<Selecting AllowRowSelect="True" />
</ClientSettings>
And a RadContextMenu is configured as shown;
<
telerik:RadContextMenu ID="rcmContextMenu" iscontext="True" runat="server" Skin="Outlook"
OnItemClick="rcmContextMenu_ItemClick" contextmenuelementid="none">
<Items>
<telerik:RadMenuItem Text="Edit" />
<telerik:RadMenuItem Text="Delete" />
</
Items>
</
telerik:RadContextMenu>
The following occurs when a RadContextMenu is used on the RadGrid;
1) Right click on selected grid row.
2) Context menu appears as expected
3) An item is selected off of the context menu
4) RadGrid_SelectedIndexChanged event is fired
5) RadContextMenu_ItemClick event is fired
How is it possible to use a RadContextMenu when RadGrid_SelectedIndexChanged fires when an item is selected off of the context menu before RadContextMenu_ItemClick fires?