Page 1 of 1

It is possible to overwrite CalendarManager

Posted: Fri Feb 22, 2019 10:19 pm
by Jean
I use CalendarManager
But I want to get some events, but I can not find them in the documentation

1 --> I need the click event
When I select another calendar I want to change the schedule and set it (picture 2)

2 --> This I have created with Extjs obtaining the index components and then adding, Its okay or is there another way to create?

3 -- > I can not find the Click event of saving the calendar in my BD

Please, can you tell me where I find those events?

Re: It is possible to overwrite CalendarManager

Posted: Sun Feb 24, 2019 12:33 pm
by mats
It's possible, but the widget wasn't designed to be heavily customised.

1.
        calendarWindow.down('treepanel').on('selectionchange', console.log);
2. It's ok, not ideal but hard to do it in a future proof way. You'll have to keep your eyes open for any changes made to the calendar manager UI in future releases, but we have nothing planned there so should be ok.

3.
       calendarWindow.down('button[text=Aceptar]').on('click', console.log);

Re: It is possible to overwrite CalendarManager

Posted: Fri Mar 01, 2019 1:15 am
by Jean
thanks for your reply.