onClearAll

fires after data in the scheduler was cleared

void onClearAll();

Example

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

Details

The event is invoked from the clearAll method.

Back to top