jQuery UI Widgets Forums Navigation Menu, Context Menu Down Arrow not showing on parent menus

This topic contains 1 reply, has 1 voice, and was last updated by  robrichard 12 years, 4 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Down Arrow not showing on parent menus #7964

    robrichard
    Member

    I’m not getting the down arrow to display on parent menu items that have children. Did I miss a property?

    Javascript:

    $("#jqxMenu2").jqxMenu({ height: '40px' });
    $("#jqxMenu2").css('visibility', 'visible');

    HTML:

                <div id="jqxMenu2" style="visibility: hidden; float: right; width: 200px;">
    <ul>
    <li>Reports
    <ul>
    <li><a href="javascript:summaryReport();">Incident Summary</a></li>
    </ul>
    </li>
    <li>Data Exports
    <ul>
    <li><a href="javascript:shapeExport();">Shape File Export</a></li>
    <li><a href="javascript:kmlExport();">KML File Export</a></li>
    </ul>
    </li>
    </ul>
    </div>
    Down Arrow not showing on parent menus #7966

    robrichard
    Member

    Duh! As soon as I post it I find the answer… Here’s the answer for those who need it:

    $("#jqxMenu2").jqxMenu({ height: '40px', theme: 'darkblue', showTopLevelArrows: true });

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.