Hi,
I need to handle an ajax timeout in my app.
To do that I use onBeforeAjax event and modify xhr object:
xhr.timeout = 30000;
xhr.ontimeout = function () { webix.message(‘адынадынадын’); };
But IE throws an exception in this case. I know that IE is very peculiar browser and it need to set timeout of xhr on very peculiar stage.
How to do that in the best way?