Hmm, not sure whether this should go in the RadTreeView forum, RadMenu forum, or RadCalendar forum, but oh well, it's going here :)
I have a RadTreeView with a context menu, in which one item has a popout item that contains a RadCalendar. This all shows up just fine, but when I go to use the FastNavigation for the calendar, it shows up behind the context menu. I tried to put a very large z-index on the FastNavigation style, but that didn't work. Some simple demo code is below. Any suggestions?
Thanks,
Jared
I have a RadTreeView with a context menu, in which one item has a popout item that contains a RadCalendar. This all shows up just fine, but when I go to use the FastNavigation for the calendar, it shows up behind the context menu. I tried to put a very large z-index on the FastNavigation style, but that didn't work. Some simple demo code is below. Any suggestions?
| <telerik:RadTreeView ID="RadTreeView1" runat="server"> |
| <Nodes> |
| <telerik:RadTreeNode Text="My Node" /> |
| </Nodes> |
| <ContextMenus> |
| <telerik:RadTreeViewContextMenu> |
| <Items> |
| <telerik:RadMenuItem Text="Show Calendar"> |
| <Items> |
| <telerik:RadMenuItem> |
| <ItemTemplate> |
| <telerik:RadCalendar ID="RadCalendar1" runat="server" Font-Names="Arial, Verdana, Tahoma" |
| ForeColor="Black" Style="border-color: #ececec"><fas |
| </telerik:RadCalendar> |
| </ItemTemplate> |
| </telerik:RadMenuItem> |
| </Items> |
| </telerik:RadMenuItem> |
| </Items> |
| </telerik:RadTreeViewContextMenu> |
| </ContextMenus> |
| </telerik:RadTreeView> |
Thanks,
Jared