I am using the menu control to create a drop down button. Essentially it is a single root level item that drops down a selection list. I have the main button taking my css, as well as the individual menu items but cannot figur out how to set the css for the group of items. In other words, the menu displays but there is no background behind the items.
in a related issue...i cannot get the menu to expand down....so it behaves like a "drop up" button. Any help would be appreciated.
<telerik:RadMenu ID="RadMenu1" runat="server" Skin="" ClickToOpen="true"> |
<DefaultGroupSettings ExpandDirection="down" /> |
<Items> |
<telerik:RadMenuItem Text="Override Status" GroupSettings-ExpandDirection="Down" CssClass="CommandButton" > |
<Items> |
<telerik:RadMenuItem Text="test" CssClass="DropMenuButton"></telerik:RadMenuItem> |
<telerik:RadMenuItem Text="test2" CssClass="DropMenuButton"></telerik:RadMenuItem> |
<telerik:RadMenuItem Text="test3" CssClass="DropMenuButton"></telerik:RadMenuItem> |
</Items> |
</telerik:RadMenuItem> |
</Items> |
</telerik:RadMenu> |