Event when scheduler is created

Hi

Which event is fired after rendering the full scheduler?
I’m creation input-field into day-header and when all is created, I have to load data into this input fields.

onViewChange is fired after navigation or changed the view but not at first loading.

Best regards
Christoph

Hi,

Please try this event

scheduler.attachEvent("onXLE", function (){ //logic after rendering data });

I hope this will help you :slight_smile:

Hi

onXLE is only fired once when the scheduler is loaded. When I switch Week/Month or the view, I receive no event.

best regards
Christoph

Hi,

Try onViewChange event while changing the view

scheduler.attachEvent(“onViewChange”, function (new_mode , new_date){
//any custom logic here
});

This onViewChange is not fired when first loaded.
I exptected an function which is fire after every finised refresh.

I’ll take this to functions an call my refresh-function.

thanks
Christoph

Hi,
onViewChange should fire on initial render of a scheduler - e.g. docs.dhtmlx.com/scheduler/snippet/12249c38
Could you provide a demo that shows what’s happening in your case?