Hi, I'm trying to embed a RadMenu into the RadPanel bar. Currently, the issue I'm facing is the SubMenu items isn't appearing (it is supposed to dropdown).
<telerik:RadPanelBar ID="RadPanelBar1" runat="server" Width="100%"AllowCollapseAllItems="true" CollapseAnimation-Type="Linear"ExpandAnimation-Type="Linear" Skin="WebBlue" BorderStyle="None" BorderWidth="0px"> <Items> <telerik:RadPanelItem Text="Welcome, John Doe" runat="server" Expanded="true"> <Items> <telerik:RadPanelItem> <ItemTemplate> <telerik:RadMenu ID="Menu1" runat="server" CssClass="RadMenu_MetroTouch" Skin="MetroTouch" EnableRoundedCorners="true" Width="100%" Font-Names="Calibri"> </telerik:RadMenu> </ItemTemplate> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem> </Items></telerik:RadPanelBar>