Our pure JavaScript Scheduler component


Post by Landpoint »

Hello,
I am having some strange things happening with my events.

I register my schedule as such:
        this.schedule = new Schedule({
                        appendTo: 'container2',
                        events: this.events,
                        viewPreset: 'weekAndDayLetter',
                        columns: this.columns,
                        barMargin: 5,
                        timeRanges: this.timeRanges,
                        startDate: this.startDate,
                        endDate: this.endDate,
                        eventStyle: "colored",
                        eventselectionchange: this.onEventSelectionChange,
                        timeAxisChange: this.onTimeChange
                    });
However:
timeAxisChange never fires when I change the timeframe
eventselectionchange now only fires when I click save on an event edit. This used to work when I would click on different events, but has since stopped. Note that I did disable the autoClose on eventEdit of my schedule class.

Post by pmiklashevich »

Please try to specify listeners config?

Pavlo Miklashevych
Sr. Frontend Developer


Post Reply