Hi,
Code Example:
The problem occurs when putting RadComboBox inside ItemTemplate of RadMenuItem.
When user activates the menu item and then activates the dropdown, the selection pane shows, as the user attempts to select from the list of the dropdown the menu retrieves leaving just the selection pane open.
The fix would be in my opinion to make sure menu dropdown does not retreat when mouse is still over any of the child elements.
Thanks,
Kris
Code Example:
<telerik:RadMenu ID="RadMenu1" runat="server"> |
<Items> |
<telerik:RadMenuItem Text="RadMenuItem1"> |
<Items> |
<telerik:RadMenuItem> |
<ItemTemplate> |
<telerik:RadComboBox ID="RadComboBox1" runat="server" Style="z-index: 8001;"> |
<Items> |
<telerik:RadComboBoxItem Text="RadComboBoxItem1" /> |
<telerik:RadComboBoxItem Text="RadComboBoxItem2" /> |
<telerik:RadComboBoxItem Text="RadComboBoxItem3" /> |
</Items> |
</telerik:RadComboBox> |
</ItemTemplate> |
</telerik:RadMenuItem> |
</Items> |
</telerik:RadMenuItem> |
</Items> |
</telerik:RadMenu> |
The problem occurs when putting RadComboBox inside ItemTemplate of RadMenuItem.
When user activates the menu item and then activates the dropdown, the selection pane shows, as the user attempts to select from the list of the dropdown the menu retrieves leaving just the selection pane open.
The fix would be in my opinion to make sure menu dropdown does not retreat when mouse is still over any of the child elements.
Thanks,
Kris