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
1220
Grid client functionality broke after upgrading to Firefox 3.6 (igtbl_addNew)
posted

Hello,

This code is long running in production. It also still works in IE and Chrome.

ever since upgrading to FF 3.6, it breaks somewhere inside:

igtbl_addNew(GridName, 0)

this may or may not be related to calling document.getBoxObjectFor

hard to say at this point. I will post more info as i troubleshoot this.... please let me know if you have any clues as to what happened.

grid v8.2, Version=8.2.20082.2160

Parents
No Data
Reply
  • 1220
    posted

    i found the following workaround:


            if (!document.getBoxObjectFor) {
                document.getBoxObjectFor = function(el) {
                    var b = el.getBoundingClientRect();
                    return { x: b.left, y: b.top, width: b.width, height: b.height };
                };
            }

    this re-adds depricated mozilla function. are newer versions of ultra web grid still using this function?

Children
No Data