I have two ASP.NET 4.0 Menu controls for tabs and sub-tabs & one tree control for left side navigation on a page.
I'm using the selected CSS class to ensure that the selected tab/sub-tab/navigation is in different color.
Whenever i select one of these control's item, selected CSS applied on it but parent selection state lose.
How can I ensure that the top level menu item has a CSS class of selected when viewing a sub page?
Main Menu:
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" ShowStartingNode="false" />
<asp:Menu ID="mainMenu" runat="server" Orientation="Horizontal"
MaximumDynamicDisplayLevels="0" RenderingMode="Table"
StaticEnableDefaultPopOutImage="False" BackColor="Transparent"
BorderColor="Transparent"
DataSourceID="SiteMapDataSource1" Height="24px"
StaticSubMenuIndent="0px" Width="340px" EnableTheming="False"
IncludeStyleBlock="False"
ViewStateMode="Enabled" onmenuitemdatabound="mainMenu_MenuItemDataBound" >
<StaticMenuStyle CssClass="menu" HorizontalPadding="0px" VerticalPadding="0px" />
<StaticMenuItemStyle CssClass="menuItem" ItemSpacing="0px" HorizontalPadding="0px"
VerticalPadding="0px" />
<StaticSelectedStyle CssClass="menuSelectedItem" HorizontalPadding="0px"
ItemSpacing="0px" VerticalPadding="0px"/>
HorizontalPadding="0px" ItemSpacing="0px" VerticalPadding="0px" />
<StaticHoverStyle CssClass="menuItemHover" />
</asp:Menu>
Sub-Menu:
<asp:SiteMapDataSource ID="SiteMapDataSource2" runat="server" ShowStartingNode="false" StartingNodeOffset="1"/>
<asp:Menu ID="Menu1" runat="server" Orientation="Horizontal"
MaximumDynamicDisplayLevels="0" RenderingMode="Table"
StaticEnableDefaultPopOutImage="False" BackColor="Transparent"
BorderColor="Transparent"
DataSourceID="SiteMapDataSource2" Height="24px"
StaticSubMenuIndent="0px" Width="340px" EnableTheming="False"
IncludeStyleBlock="False"
ViewStateMode="Enabled" onmenuitemdatabound="Menu1_MenuItemDataBound" >
<StaticMenuStyle CssClass="menu" HorizontalPadding="0px" VerticalPadding="0px" />
<StaticMenuItemStyle CssClass="menuItem" ItemSpacing="0px" HorizontalPadding="0px"
VerticalPadding="0px" />
<StaticSelectedStyle CssClass="menuSelectedItem" HorizontalPadding="0px"
ItemSpacing="0px" VerticalPadding="0px"/>
<StaticHoverStyle CssClass="menuItemHover" />
</asp:Menu>
Left Navigation:
<asp:SiteMapDataSource ID="SiteMapDataSource3" runat="server" ShowStartingNode="false"
StartingNodeOffset="2" />
<asp:TreeView ID="TreeView1" runat="server" BackColor="Transparent"
DataSourceID="SiteMapDataSource3"
ExpandDepth="2" NodeIndent="0" Width="190px" BorderColor="Gainsboro"
BorderStyle="None" BorderWidth="1px">
<ParentNodeStyle Font-Bold="False" />
<HoverNodeStyle Font-Underline="True" ForeColor="#5555DD" />
<SelectedNodeStyle BackColor="GhostWhite" Font-Underline="True" ForeColor="SteelBlue"
/>
<NodeStyle BackColor="LightSteelBlue" BorderColor="Lavender" BorderWidth="1px"
Font-Bold="False"
Font-Names="Verdana" Font-Size="8pt" ForeColor="Navy" HorizontalPadding="5px"
Width="190px" />
</asp:TreeView>
MasterPage.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
mainMenu.MenuItemDataBound += new MenuEventHandler(mainMenu_MenuItemDataBound);
Menu1.MenuItemDataBound += new MenuEventHandler(Menu1_MenuItemDataBound);
}
protected void mainMenu_MenuItemDataBound(object sender, MenuEventArgs e)
{
if (SiteMap.CurrentNode != null)
{
if (SiteMap.CurrentNode.ParentNode.Url == e.Item.NavigateUrl)
{
e.Item.Selected = true;
}
}
}
protected void Menu1_MenuItemDataBound(object sender, MenuEventArgs e)
{
if (SiteMap.CurrentNode != null)
{
if (SiteMap.CurrentNode.ParentNode.Url == e.Item.NavigateUrl)
{
e.Item.Selected = true;
}
}
}
CSS:
.menu
{
background-color: black;
font-size: 12px;
font-family: Arial;
font-weight: bold;
}
.menuItem td
{
height: 24px;
width: 120px;
background: url(Images/unselectedTab.jpg) no-repeat;
text-align: center;
vertical-align: middle;
}
.menuSelectedItem td
{
height: 24px;
width: 120px;
background: url(Images/selectedTab.jpg) no-repeat;
text-align:center;
vertical-align:middle;
}
.menuItem a:link, .menuItem a:visited
{
color: WhiteSmoke;
text-decoration: bold;
}
.menuItem td:hover, a:hover
{
text-decoration: underline;
color: darkorange;
}
.menuSelectedItem td:hover, a:hover
{
text-decoration: underline;
color: darkorange;
}