Hi!

Cors requests doesn't work in IE11 (I would say that in IE10 also but didn't check).

In the Connection class there is a discovery for what method to use and it fails because ieVersion is incorrect.


Code:



if ((options.cors || me.cors) && Ext.isIE && Ext.ieVersion <= 9) {
xhr = me.getXdrInstance();
me.isXdr = true;
}



Regards