remote

webix.remote(url, config)

webix.remote helper.

Please look into the linked official documentation.

Referenced by

mixins
AtomDataLoader().

External references

Official documentation page.

Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
webix.remote = function(url, config){
    if (typeof url === "object"){
        var scripts = document.getElementsByTagName("script");
        config = url;
        url = scripts[scripts.length - 1].src;
        webix.remote = getApi(url, config);
    } else
        return getApi(url, config);
};


})();

/*
    UI:DataView
*/