onOptionsLoadStart

fires before a collection of options or sections starts to be loaded from the server (the Timeline view only)

void onOptionsLoadStart();

Example

scheduler.attachEvent("onOptionsLoadStart", function (){
    //any custom logic here
});

Details

The event fires only when a collection is loaded with the help of dhtxmlConnector or through the updateCollection method.

Back to top