onLoadStart

fires immediately before loading data from the data source has been started

void onLoadStart();

Example

scheduler.attachEvent("onLoadStart", function(){
    scheduler.config.readonly = true;
});
 
scheduler.attachEvent("onLoadEnd", function(){
    scheduler.config.readonly = false;
});

See also
Back to top