Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2320
UltraWebMenu in WebSplitter problem
posted

I have a websplitter on my page and an UltraWebMenu displaying in the top Panes of a horizontal splitter.  When the popup shows, it only shows till it gets to the lower pane, then it stops.  Is there anyway to make the Context menu show overtop of the bottom pane? 

Parents
No Data
Reply
  • 7694
    posted

    Hello,

    I am trying to reproduce the problem, unfortunately to no avail. I use NetAdvantage 2008  v8.2 and  menu displays properly at IE7 and Firefox 2.0.

    ...

      <div>

            <asp:ScriptManager ID="ScriptManager1" runat="server">

            </asp:ScriptManager>

            <input id="Button3" type="button" onclick="ShowMenu();" value="button" />

            <ignav:UltraWebMenu ID="UltraWebMenu1" WebMenuTarget="PopupMenu" runat="server" JavaScriptFilename=""

                JavaScriptFileNameCommon="" LeafItemImageUrl="" ParentItemImageUrl="" StyleSetName="">

                <Items>

                    <ignav:Item Text="Top Item">

                    </ignav:Item>

                    <ignav:Item Text="Top Item">

                    </ignav:Item>

                    <ignav:Item Text="Top Item">

                    </ignav:Item>

                    <ignav:Item Text="Top Item">

                    </ignav:Item>

                    <ignav:Item Text="Top Item">

                    </ignav:Item>

                    </ignav:Item>

                </Items>

                <Levels>

                    <ignav:Level Index="0" />

                </Levels>

                <ExpandEffects ShadowColor="LightGray"></ExpandEffects>

                <MenuClientSideEvents></MenuClientSideEvents>

            </ignav:UltraWebMenu>

            <cc1:WebSplitter ID="WebSplitter1" runat="server" Height="200px" Width="300px" Orientation="Horizontal">

                <Panes>

                    <cc1:SplitterPane runat="server">

                        <Template>

                            <input id="Button1" type="button" onclick="ShowMenu();" value="button1" />

                        </Template>

                    </cc1:SplitterPane>

                    <cc1:SplitterPane runat="server">

                        <Template>

                            <input id="Button2" type="button" onclick="ShowMenu();" value="button2" />

                        </Template>

                    </cc1:SplitterPane>

                </Panes>

            </cc1:WebSplitter>

        </div>

    ...

        <script language="javascript" type="text/javascript">

               function ShowMenu() {

                    igmenu_showMenu("<%=UltraWebMenu1.ClientID %>");

                    return true;

                }

        </script>

    ...

    Could you please send a little bit more information on the problem - this will surely provide additional clues.

     

Children