when use webix.ajax().timeout(xxx) in IE, failed
In which version of IE it results in an error ?
in IE 11, may be it’s the best way to use XMLHttpRequest, not the Microsoft.xmlHTTP?
getXHR:function(){
if (webix.env.isIE){
return new ActiveXObject("Microsoft.xmlHTTP");
}
else
return new XMLHttpRequest();
},
maybe Microsoft.xmlHTTP not support to setting timeout
HI, any update for this?
We will change this part in oncoming 3.0, all browsers will use native xmlhttprequest object ( IE will fallback to activeX only for XML parsing ) so the above issue will be fixed as well.
Thanks for response, and when to release 3.0?
September 22