Menu Widget Not Working Correctly in Aspx page
All,
If I take the source from jQuery Menu UI Widget (http://jqueryui.com/menu/) and just get a simple ASPX page to display the menu, the menu will not display corrected.
Specifically the sub menus will fly out to the Left even though the menu itself is in the upper left of the page (IE Window). In effect the sub menu is unfolding outside of the IE Window.
Has anyone see anything like this? Below is what I am using as a simple Aspx page. If I take the guts of this and paste into a plain HTML page the Menu Widget will display sub menus fine. Attached should be a screen shot of my troubles.
- <%@ Page Language="VB" CodeFile="JoeTest.aspx.vb" Inherits="JoeTest" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" >
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>jQuery UI Tabs - Default functionality</title>
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
- <script src="http://code.jquery.com/jquery-1.8.3.js" type="text/javascript"></script>
- <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js" type="text/javascript"></script>
- <script type="text/javascript" language="javascript">
- $(function () {
- $("#menu").menu();
- });
-
- </script>
- <style type="text/css">
- .ui-menu { width: 150px; }
- </style>
- </head>
- <body runat="server">
- <form id="form1" runat="server" style="background-color: White; width: 728px">
- <asp:ScriptManager ID="scrMng" runat="server" EnablePartialRendering="true">
- <Services>
- </Services>
- <Scripts>
- </Scripts>
- </asp:ScriptManager>
- <div>
- <ul id="menu">
- <li class="ui-state-disabled"><a href="#">Aberdeen</a></li>
- <li><a href="#">Ada</a></li>
- <li><a href="#">Adamsville</a></li>
- <li><a href="#">Addyston</a></li>
- <li><a href="#">Delphi</a>
- <ul>
- <li class="ui-state-disabled"><a href="#">Ada</a></li>
- <li><a href="#">Saarland</a></li>
- <li><a href="#">Salzburg</a></li>
- </ul>
- </li>
- <li><a href="#">Saarland</a></li>
- <li><a href="#">Salzburg</a>
- <ul>
- <li><a href="#">Delphi</a>
- <ul>
- <li><a href="#">Ada</a></li>
- <li><a href="#">Saarland</a></li>
- <li><a href="#">Salzburg</a></li>
- </ul>
- </li>
- <li><a href="#">Delphi</a>
- <ul>
- <li><a href="#">Ada</a></li>
- <li><a href="#">Saarland</a></li>
- <li><a href="#">Salzburg</a></li>
- </ul>
- </li>
- <li><a href="#">Perch</a></li>
- </ul>
- </li>
- <li class="ui-state-disabled"><a href="#">Amesville</a></li>
- </ul>
- </div>
- </form>
- </body>
- </html>