onServerOptions

fires when client side api loads sub-collection from server side

void onServerOptions(object options);
optionsobjectthe object with option collections

Example

view.data.attachEvent("onSeverOptions", function(cols){
    for (var key in cols){
        webix.message("Collection: "+key);
    }
});

Back to top