Can the submenu colors be set to different colors based on the parent menu item selected. In the example below we would like to be able to have a blue background color for the submenu of the 1st menu item, a red background for the submenu of the 2nd item, etc... We are using a slightly modified version of the default 2006 skin. It would be nice if there was a groupsettings-cssclass property.
| <telerik:radmenu id="RadMenu1" runat="server" flow="Vertical" skin="AdisseoBiz" |
| onclientitempopulating="itemPopulating" borderwidth="0px" borderstyle="None" |
| backcolor="#A5001E" width="200px" enableembeddedskins="false"> |
| <WebServiceSettings Path="getProducts.asmx" Method="GetMenuCategories" /> |
| <DefaultGroupSettings Flow="Vertical" ExpandDirection="Right" /> |
| <Items> |
| <telerik:RadMenuItem ImageUrl="~/images/v3_main_04.gif" /> |
| <telerik:RadMenuItem ImageUrl="~/images/v3_btn_Microvit.gif" HoveredImageUrl="~/images/v3_btn_MicrovitOver.gif" |
| Value="1" ExpandMode="WebService" runat="server" ToolTip="Microvit"> |
| <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> |
| </telerik:RadMenuItem> |
| <telerik:RadMenuItem ImageUrl="~/images/v3_btn_Rhodimet.gif" HoveredImageUrl="~/images/v3_btn_RhodimetOver.gif" |
| Value="2" ExpandMode="WebService" runat="server" ToolTip="Rhodimet" > |
| <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> |
| </telerik:RadMenuItem> |
| <telerik:RadMenuItem ImageUrl="~/images/v3_btn_Rovabio.gif" HoveredImageUrl="~/images/v3_btn_RovabioOver.gif" |
| Value="3" ExpandMode="WebService" runat="server" ToolTip="Rovabio"> |
| <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> |
| </telerik:RadMenuItem> |
| <telerik:RadMenuItem ImageUrl="~/images/v3_btn_Smart.gif" HoveredImageUrl="~/images/v3_btn_SmartOver.gif" |
| Value="4" ExpandMode="WebService" runat="server" ToolTip="Smartamine"> |
| <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> |
| </telerik:RadMenuItem> |
| </Items> |
| <CollapseAnimation Duration="200" Type="OutQuint" /> |
| <ExpandAnimation Type="OutQuart" /> |
| </telerik:radmenu> |