onOptionsLoad

fires after sections of the Timeline/Units view have been updated

void onOptionsLoad();

Example

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

Details

When this event is fired, the following happens:

The event is fired in several cases:

  • On initialization of the Timeline/Units view, when sections are parsed for the first time;
  • When sections are loaded with the data;
  • Whenever scheduler.updateCollection is called.
Back to top