Hi,
From what I have read researching this issue, it seems that simply using the RadMenu BackColor as you do in other controls is not straightforward.
I have read things talking about setting it programmatically, childmenu items, etc.
I just want to be sure there is nothing I am overlooking to simply use the RadMenu BackColor="Color" property ?
This is my code .....
Thanks for your time ....
From what I have read researching this issue, it seems that simply using the RadMenu BackColor as you do in other controls is not straightforward.
I have read things talking about setting it programmatically, childmenu items, etc.
I just want to be sure there is nothing I am overlooking to simply use the RadMenu BackColor="Color" property ?
This is my code .....
| <telerik:RadMenu OnClientMouseOut="Mmouseout" OnClientMouseOver="Mmouseover" OnItemClick="RadMenu1_OnItemClick" |
| OnClientItemClicked="RadMenu1_OnClientItemClicked" ID="RadMenuLine" ExpandAnimation-Type="InOutBack" |
| CollapseAnimation-Type="InQuad" BorderColor="Brown" |
| Skin="WebBlue" runat="server" Font-Size="Small" |
| Width="100%" commandName="MenuCommand" > |
| <Items> |
| <telerik:RadMenuItem GroupSettings-ExpandDirection="Up" runat="server" Text="View" |
| BackColor="Yellow" ForeColor="Brown" Font-Bold="true" Style="font-weight: bold"> |
| <Items> |
| <telerik:RadMenuItem runat="server" Text="Detail" CssClass="MenuItemLeft" BackColor="Yellow" |
| ForeColor="Blue"> |
| </telerik:RadMenuItem> |
| <telerik:RadMenuItem runat="server" Text="Summary" ForeColor="Blue"> |
| </telerik:RadMenuItem> |
| <telerik:RadMenuItem runat="server" Text="Print" NavigateUrl="~/mybodyscience/MBS_Reports/iqReport_Display.aspx" |
| BackColor="Yellow" ForeColor="Blue" Target="_blank"> |
| </telerik:RadMenuItem> |
| </Items> |
| </telerik:RadMenuItem> |
| <telerik:RadMenuItem runat="server" Text="Add Equipment" commandName="MAddCommand" |
| BackColor="Yellow" ForeColor="Brown" Font-Bold="true" > |
| </telerik:RadMenuItem> |
| <telerik:RadMenuItem runat="server" Text="Refresh" |
| BackColor="Yellow" ForeColor="Brown" Font-Bold="true" > |
| </telerik:RadMenuItem> |
| <telerik:RadMenuItem runat="server" id="Mhelp" Text="Help" commandName="MhelpCommand" |
| BackColor="Yellow" ForeColor="Brown" Font-Bold="true" Value="88"> |
| </telerik:RadMenuItem> |
| </Items> |
| </telerik:RadMenu> |
Thanks for your time ....