resolves all promises in the result array
promise | promise | 'promise' object |
morepromises | promise | 'promise' object(s) |
a = webix.ajax("someA.php");
b = webix.ajax("someB.php");
c = webix.ajax("someC.php");
webix.promise.all(a,b,c).then(function(a,b,c){
...
});
The function is executed when callbacks have been received from all of the requests for which 'promise' objects have been passed into the function.
Back to top