Using version 9.2.20092.2025 (also tested in 8.2) and FireFox 3.6
Anytime I try to sort or basically anything with JavaScript I get the error:
Error: document.getBoxObjectFor is not a function
And the section in the source file looks like this:
else if (ig_csom.IsFireFox && document.getBoxObjectFor(elem)) { var rect = document.getBoxObjectFor(elem); r.x = rect.x; r.y = rect.y; r.w = rect.width; r.h = rect.height; }
Can anyone else confirm this?
Basically the grid is completely broken in this new version of FireFox.
Any knows if Infragistics team will fix this problem soon?
Hello Guys,
This issue is reported to the dev team and it will be fixed in the next service release. You can refer the Release calendar here:
http://es.infragistics.com/support/service-releases.aspx#ServiceReleases
Regards,
Hello,
To look into this we need to know what version of the UltraWebGrid you are using. The issues mentioned earlier in the thread were resolved in the latest service release of 2008 Volume 2 and newer. If upgrading to the latest service release doesn't address the issue that you are seeing then please provide us with the markup for the UltraWebGrid as well as the version you are using so we can test this.
Please also provide more details on how the scripts aren't working when you add the path to the web.config so I know how to better assist you.
Let me know if you have any questions with this matter.
hi Alex,
These line are present in ig_WebGrid.js but still problem is present can you help me how to solve UltraWebGrid Click issue with firefox issue comes with var frameEl=tempE.document.parentWindow.frameElement;
when i click on grid column to edit.
also,
Plz help me for how to change script path of dll through web.config. i have add tag of infragistics.web tag to change script source but it is not working.....
Hi,
This issue affects the 'UltraWebGrid' which is a different control than the 'WebDataGrid'. The 'WebDataGrid' does not have this issue. If you are experiencing a different issue, it would be best to start a new thread so that other people having the same issue can more easily find the post.
Please provide any JavaScript errors you are receiving and/or steps to reproduce so that we can help you resolve any issues. Thanks.
hi,
i am confused about the step you mentioned.to solve issue can reply me how to change webdataGrid java script file to changed java script in web.xml.if possible reply all the step to solve this issue....
I copied the script lines into a js file and I added the following code to the page_load event:
If (DirectCast(Request.Browser, System.Web.HttpBrowserCapabilities).Type.StartsWith("Firefox3.6")) Then ClientScript.RegisterClientScriptInclude("bugfix-ff36-getBoxObjectFor", "js/bugfix-ff36-getBoxObjectFor.js")End If
Note that I use StartsWith to ensure that all versions of Firefox 3.6 get covered.