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
160
ultrawebmenu no compability with Mozilla Firefox 4.0 Beta
posted

<ig:ultrawebmenu id="UltraWebMenu1" runat="server" Height="29px" TargetFrame="eContent"

                                                Width="100%"  Font-Size="12px" FocusOnHover="false"

                                    BackColor="Control" Font-Bold="True" ForeColor="DarkBlue" BorderStyle="Solid" BorderColor="#4863A0" 

                                    BorderWidth="0px" TopItemSpacing="Compact">

                                    <IslandStyle BackColor="White" BorderStyle="Solid" BorderWidth="1px" BorderColor="#4863A0" Font-Bold="true" ForeColor="#4863A0"

                                        Cursor="Default" >

                                    </IslandStyle>

                                    <HoverItemStyle Cursor="Default" ForeColor="White" BorderWidth="1px" BorderColor="#4863A0" BorderStyle="Solid" BackColor="DarkBlue">

                                        <Margin Bottom="0px" Left="0px" Top="0px" Right="0px"></Margin>

                                    </HoverItemStyle>

                                    <ItemStyle Cursor="Default" >

                                        <Padding Left="10px"></Padding>

                                        <Margin Bottom="1px" Left="1px" Top="1px" Right="1px"></Margin>

                                    </ItemStyle>

                                    <ParentItemStyle>

                                        <Padding Left="2px" Right="2px" />

                                    </ParentItemStyle>  

                                    <Items>

                                    //Dynamic Bind Items at Code behind

                                    </Items>                           

                                    <DisabledStyle Font-Names="MS Sans Serif" Font-Size="8pt" ForeColor="Gray">

                                    </DisabledStyle>

                                    <SeparatorStyle CssClass="SeparatorClass" BorderStyle="Solid" BorderWidth="1px"  

                                        CustomRules="background-repeat:repeat-x; " />

                                    <ExpandEffects ShadowColor="#C6DEFF" Type="NotSet"></ExpandEffects>

                                </ig:ultrawebmenu>  

 

Ultrawebmenu as above layout, it works properly on IE8, Firefox 3.6 and Google Chrome,

 

however I found that same layout of ultrawebmenu as above no combability in Firefox 4.0 Beta, menu should show its subitems once mouse over  parent items, but the ultrawebmenu look 'freeze'. 

Parents
  • 8736
    posted

    Hello,

    Thanks for details . I was able to see the behavior you described (hover Item Style) with UltraWebMenu on FireFox 4.0b12. UltraWebMenu is not supported on Firefox 4.0. The below link from our website will provide more details on supported environments:

    <https://ko.infragistics.com/support/supported-environments>   

    Expand “NetAdvantage for Web Client –ASP.NET” on Supported Environments page.  It will give you more details on product support for classic controls (like UltraWebMenu). As such, I recommend using WebDataMenu instead, since our ASP.NET AJAX controls are supported with Firefox.

    I have used the following markup for UltraWebMenu to test:

    <ignav:UltraWebMenu Id="UltraWebMenu1" runat="server" Height="29px" TargetFrame="eContent" Width="100%"  Font-Size="12px" FocusOnHover="False"
    BackColor="Control" Font-Bold="True" ForeColor="DarkBlue" BorderStyle="Solid" BorderColor="#4863A0" BorderWidth="0px" TopItemSpacing="Compact">
    <IslandStyle BackColor="White" BorderStyle="Solid" BorderWidth="1px" BorderColor="#4863A0" Font-Bold="true" ForeColor="#4863A0" Cursor="Default" >
    </IslandStyle>
    <HoverItemStyle Cursor="Default" ForeColor="White" BorderWidth="1px" BorderColor="#4863A0" BorderStyle="Solid" BackColor="DarkBlue">
    <Margin Bottom="0px" Left="0px" Top="0px" Right="0px"></Margin>
    </HoverItemStyle>
    <ItemStyle Cursor="Default" >
    <Padding Left="10px"></Padding>
    <Margin Bottom="1px" Left="1px" Top="1px" Right="1px"></Margin>
    </ItemStyle>
    <ParentItemStyle>
    <Padding Left="2px" Right="2px" />
    </ParentItemStyle>
    <Items>
    <ignav:Item Text="Top Item">
    <Items>
    <ignav:Item Text="Sub Menu Item 1">
    <Items>
    <ignav:Item Text="Sub Menu Item">
    </ignav:Item>
    </Items>
    </ignav:Item>
    </Items>
    </ignav:Item>
    <ignav:Item Text="Top Item 1">
    <Items>
    <ignav:Item Text="Sub Menu Item 2">
    <Items>
    <ignav:Item Text="Sub Menu Item 23">
    </ignav:Item>
    </Items>
    </ignav:Item>
    </Items>
    </ignav:Item>
    <ignav:Item Text="Top Item 3">
    <Items>
    <ignav:Item Text="Sub Menu Item 31">
    </ignav:Item>
    </Items>
    </ignav:Item>
    </Items>
    <SeparatorStyle BackgroundImage="ig_menuSep.gif" CssClass="SeparatorClass"
    CustomRules="background-repeat:repeat-x; " />
    <DisabledStyle Font-Names="MS Sans Serif" Font-Size="8pt" ForeColor="Gray">
    </DisabledStyle>
    <ExpandEffects ShadowColor="#C6DEFF" Type="NotSet"></ExpandEffects>
    <Levels>
    <ignav:Level Index="0" />
    <ignav:Level Index="1" />
    <ignav:Level Index="2" />
    </Levels>
    <Images>
    <SubMenuImage Url="ig_menuTri.gif" />
    </Images>
    </ignav:UltraWebMenu>

    The below links will give you more details on WebDataMenu features and functionality:

    <https://ko.infragistics.com/samples/aspnet
    <https://ko.infragistics.com/samples/aspnet/data-menu/overview>

    Hope this helps.

    Thanks,

    Bhadresh

Reply Children