Hi,
I have a RadGrid :
With a context menu :
Which has items added programatically :
The problem I am experiencing is a display issue after selecting an item from the context menu.
Functionally all is well, but as the context menu hides after the click, it momentarily jams, show a number of the menu items on screen before disappearing completely. This is undesirable and I would like to remove this effect.
Any suggestions?
Regards,
Sean Duffy
I have a RadGrid :
<telerik:RadGrid ID="rgShowAll" runat="server" OnItemDataBound="RadGrid1_ItemDataBound" |
Skin="Vista" AutoGenerateColumns="false" ClientSettings-Resizing-AllowColumnResize="true" |
OnSelectedIndexChanged="RadGrid1_SelectedIndexChanged" OnSortCommand="RadGrid1_SortCommand" |
ShowHeader="true" Visible="false" SortingSettings-SortedAscToolTip="Sort Ascending"> |
<MasterTableView ShowFooter="false" HierarchyDefaultExpanded="false" AllowSorting="true" AllowFilteringByColumn="true"> |
<HeaderStyle /> |
<Columns> ...</Columns> |
</MasterTableView> |
<ClientSettings EnablePostBackOnRowClick="true"> |
<Selecting AllowRowSelect="true" /> |
<ClientEvents OnRowContextMenu="RowContextMenu" /> |
</ClientSettings> |
</telerik:RadGrid> |
With a context menu :
<telerik:RadContextMenu ID="ContextMenu" runat="server" Skin="Outlook" OnItemClick="ContextMenu_ItemClick"> |
</telerik:RadContextMenu> |
Which has items added programatically :
ContextMenu.Items.AddRange(ContextMenuHelper.GetButtonsForView(MenuOwnerTypes.ContentItemView.ToString())); |
The problem I am experiencing is a display issue after selecting an item from the context menu.
Functionally all is well, but as the context menu hides after the click, it momentarily jams, show a number of the menu items on screen before disappearing completely. This is undesirable and I would like to remove this effect.
Any suggestions?
Regards,
Sean Duffy