User Profile & Activity

Stefan Plattner Member
Posted: November 22, 2013 2:48 AM

I tested it on IE 11 on Windows 8.1

Get an error in ISRes.axd line 117:

    var v1ce76 =v52819.createNSResolver(this.nodeType ==9 ? this.documentElement : this);

The object doesn't support the property or method "createNSResolver"

(btw, if you go to http://www.intersoftpt.com/ and open F12 debugger, I see the same error message)

Posted: November 21, 2013 3:26 AM

Same here:


"TypeError: window.createPopup is not a function"


please fix this soon. I have to revert my update because of this bug.


And could you please provice a different method for delivering hotfixes? It always takes an hour to install the whole package. Could you prepare just the assemblies as well?

Posted: November 21, 2013 3:09 AM

Hm, I still get an execption in IE11

You're still using window.attachEvent:

   window.attachEvent("onload", ISCoreOnLoad);


Compatibilty changes in IE 11

http://msdn.microsoft.com/en-us/library/ie/bg182625(v=vs.85).aspx


Posted: November 6, 2013 8:39 AM
Please give it a high priority. This is a serious issue making my applications useless on IE 11 which people begin to adopt. Thanks.
Posted: October 21, 2013 3:42 AM

Is there news for this issue? Are you working on a hotfix?

I'm sure that will be a problem very soon for my clients.


Posted: April 16, 2013 5:20 AM

Matt, I've a workaround which works (not perfectly, but it works). It creates the removed function to the document object if it doesn't exist:

if (!document.getBoxObjectFor) {
   document.getBoxObjectFor = function(el) { 
      var pos = {};
      pos.x = el.offsetLeft;
      pos.y = el.offsetTop;
      parent = el.offsetParent;
      if (parent != el) {
           while (parent) {
               pos.x += parent.offsetLeft;
               pos.y += parent.offsetTop;
               parent = parent.offsetParent;
           }
      }
                
      parent = el.offsetParent;
      while (parent && parent != document.body) {
         pos.x -= parent.scrollLeft;                    
         if (parent.tagName != 'TR') {
             pos.y -= parent.scrollTop;
         }
         parent = parent.offsetParent;
      }
      return pos;
   };          
 }

I hope that IS publishes a hotfix soon though.

Posted: April 16, 2013 3:00 AM

I've encountered this bug too. Please make it super high priority and release a hotfix soon.

Thanks

All times are GMT -5. The time now is 2:40 AM.
Previous Next