It is possible to overwrite CalendarManager
It is possible to overwrite CalendarManager
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?
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?
- Attachments
-
- cuestions.png (79.13 KiB) Viewed 2655 times
Re: It is possible to overwrite CalendarManager
It's possible, but the widget wasn't designed to be heavily customised.
1.
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.
1.
Code: Select all
calendarWindow.down('treepanel').on('selectionchange', console.log);
3.
Code: Select all
calendarWindow.down('button[text=Aceptar]').on('click', console.log);
Tired of debugging javascript errors in web applications? Try our new error logging service RootCause, or read more on the Sencha blog
@bryntum
Facebook
API documentation
@bryntum
API documentation
Re: It is possible to overwrite CalendarManager
thanks for your reply.