onEventAdded

Wird ausgelöst, wenn ein neues Event zum Scheduler hinzugefügt wird

void onEventAdded(string id,object ev);
idstringdie eindeutige Kennung des Events
evobjectdas Event-Objekt selbst

Example

scheduler.attachEvent("onEventAdded", function(id,ev){
    //custom logic can be placed here
});

Related samples

Nach oben