<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'.
Ok, I read your article on IE9 and Firefox 4 Support ... it's written on 04.04.2011 and you're saying it's about to be released this week ... has it *now* been released ? Is it downloadable yet ?
Kind regards,
Hello,
Yes, we are supporting Firefox 4 and IE 9. Please refer to the forum post from the following URL that will give you more details on IE 9 and Firefox 4 support:
<https://ko.infragistics.com/community/blogs/b/taz_abdeali/posts/ie9-and-firefox-4-support>
Let me know if you have any further questions with this matter.
Thanks,
Bhadresh
Hi there,
What's the status on this ??
I see our UltraWebMenu is breaking on our PRODUCTION environment ... when using FF4
Please let me know asap ... our dropDown in the WebMenu is broken on FireFox 4, latest version
regards,
Dep12 is right, THIS JAVASCRIPT NOW WORKS.
I am so sick of Infragistics and their LAZY support of old sloppy code. Is it the paying customer's fault that you wrote bad Javascript code years ago?
Upgrade? Spending more money on sub-par coding is NOT the answer. It shouldn't take a community to fix this... it was ONE SIMPLE IF STATEMENT... try harder to fix your mistakes rather than push people away and say "Upgrade"
You don't even have to have a hotfix for old code, just a known issues database and put the fix right in the KB.
I've found some workaround
The file ig_webmenux.js has lines
if (ig_csom.IsMac || (eContainer.style.filter == null)) { if (ig_csom.IsFireFox || ig_csom.IsOpera || ig_csom.IsSafari) {
Thats why in FireFox case it works like IE.
I changed code in this way
if (ig_csom.IsFireFox || ig_csom.IsMac || (eContainer.style.filter == null)) { if (ig_csom.IsFireFox || ig_csom.IsOpera || ig_csom.IsSafari) {
Am I right? hello infragistics.