ASP.Net Vertical Menu with Scroll functionality

Posted by Thomas on Stack Overflow See other posts from Stack Overflow or by Thomas
Published on 2010-12-12T23:35:03Z Indexed on 2010/12/25 20:54 UTC
Read the original article Hit count: 219

Filed under:
|
|

Referring to Menu / Scrolling Example

I would like to create / find the same functionality for a vertical menu. I tried the following.

    <asp:Menu ID="menuAccountMembers" runat="server" StaticSubMenuIndent="16px" 
        Visible="true" RenderingMode="Table"
        ScrollDownImageUrl="~/Resources/scrolldown.jpg" 
        ScrollUpImageUrl="~/Resources/scrollup.jpg">
        <Items>

But it doesnt display any scrolling images. I am using .net 4.0 Tried setting menuAccountMembers.RenderingCompatibility = new Version(3, 5); as well.

If there a property to only display the first 5 root menu items, then show scroll bars for the rest? It can be click-able, no need to hover over to show next item.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about menu