ASP.NET 2.0 BasicsIf you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 2.0 Basics section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
Redesign a menu to list items in Tree like structure with plus sign
Good day, I would like to redesign a menu.
The menubar has drop down items to select, i want to change not to show in drop down menu but list the items below in another line with plus sign & click on plus to show more (after menu plus click change to - ). Like a Tree listing with plus to go further down the tree order.
eg: this is what it currently does (on mouseover displays info with sub menu sub next to info beneath Main menu) and dissapers as move away.
Main Help
Info - sub
I would like the following with plus signs next to it, to display all items in main: eg:
+ Main
+ Info
sub
in a new line, I have no clue how - please assist.
Menu page code:
<td>
<ignav:UltraWebMenu id="mnu" JavaScriptFilename="" JavaScriptFileNameCommon="" LeafItemImageUrl="" ParentItemImageUrl=""
StyleSetName="" runat="server" EnhancedRendering="False" ItemPaddingSubMenus="0" ItemPaddingTop="0" ItemSpacingTop="0" SeparatorClass="" MergeStyles="False">
<ItemStyle CssClass="mnuItem"></ItemStyle>
<DisabledStyle ForeColor="LightGray"></DisabledStyle>
<HoverItemStyle Cursor="Default" CssClass="mnuItemHover"></HoverItemStyle>
<IslandStyle BorderStyle="None" Cursor="Default" ></IslandStyle>
<ExpandEffects ShadowColor="LightGray"></ExpandEffects>
<SeparatorStyle CssClass="SeparatorClass" CustomRules="background-repeat:repeat-x; "></SeparatorStyle>
<Levels>
<ignav:Level Index="0" LevelCheckBoxes="False"></ignav:Level>
<ignav:Level Index="1" LevelCheckBoxes="False"></ignav:Level>
</Levels>
<Items>
<ignav:Item TargetUrl="Home.aspx" TagString="" HoverClass="mnuMainHover"
TargetFrame="" CssClass="mnuMain" Text="Home" ToolTip="Navigate to Home"> </ignav:Item>
<ignav:Item TargetUrl="myActionlist.aspx" TagString=""
HoverClass="mnuMainHover" TargetFrame="" CssClass="mnuMain" Text="myActionList" ToolTip="All Activites"></ignav:Item>
<ignav:Item TargetUrl="myProcesslist.aspx" TagString=""
HoverClass="mnuMainHover" TargetFrame="" CssClass="mnuMain" Text="myProcess" ToolTip="Contains a list of all the processes that I can Initiate"></ignav:Item>
</Items>
<MenuClientSideEvents InitializeMenu="" ItemChecked="" ItemClick="" SubMenuDisplay="" ItemHover=""></MenuClientSideEvents>
</ignav:UltraWebMenu>
</td>
Regards