Hi
In your sample you execute in parallell 3 ajax
var a = webix.ajax(“someA.php”);
var b = webix.ajax(“someB.php”);
var c = webix.ajax(“someC.php”);
webix.promise.all([a,b,c]).then(function(results){
var a_result = results[0];
var b_result = results[1];
var c_result = results[2];
// do something
// …
});
When I execute it, the server is only getting ajax calls one after the other one.
I never get the 3 calls at the same time, only one at a time, the next waiting for the current is finishing.
Is it normal ?
Does fetch have the same issue ?
Thanks