onLoadEnd

fires after loading data from the data source has been completed

void onLoadEnd();

Example

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

See also
Back to top