Documentation

onServerOptions

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

void onServerOptions(hash options){ ... };

Parameters

optionshashhash of options collections

Example

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

Back to top