Documentation

bind

binds callback function to object

ajax bind(object master);

Parameters

masterobjectdesired content of "this" in the callback

Returns

ajaxthis instance of ajax object

Example

webix.ajax().bind(myobj).get("some.php", function(){
    //this == myobj
});

Back to top