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
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?