Default behaviour of AppointmentForm is when you double click on a cell, appointmentForm shows up from left side. But is there any possibility to show existing AppointmentForm in a modal?
What I would like to achieve:
single click on a cell or existing appointment, should open appointmenForm in a Modal.
In this scenario, I want to open appointmenForm on singleClick (right now if you single click on an existing appointment, it opens AppointmentTooltip, in my case I want to open AppointmentForm instead of AppointmentTooltip)
Hello!
You can customize AppointmentForm's Overlay component. Here is a small example: https://codesandbox.io/s/amazing-goldwasser-zrb1f?file=/demo.js. In it I have also customized Appointment component so that AppointmentForm opens on onClick event instead of onDoubleClick. Note: in this case you will not be able to open AppointmentTooltip.
If you want to open the form
If you have any other questions, we will be happy to assist you.
Hello @AryamnovEugeniy Thank you for your reply, really appreciate the help. I have one more question:
How to handle custom CREATE ,DELETE and CANCEL button in the modal? I don't want to use the default SAVE / DELETE buttons.
What I am trying to achieve:
I want to provide same functionality to my custom CREATE button as SAVE button in default appointment form in the modal. Same for DELETE button and CANCEL button. For example:

I created a small example here for the buttons: https://codesandbox.io/s/scheduler-appointmentform-modal-vcb6r?file=/demo.js.
Would very much appreciate any help. Thank you!.
Most helpful comment
Hello!
You can customize
AppointmentForm's Overlay component. Here is a small example: https://codesandbox.io/s/amazing-goldwasser-zrb1f?file=/demo.js. In it I have also customized Appointment component so thatAppointmentFormopens ononClickevent instead ofonDoubleClick. Note: in this case you will not be able to open AppointmentTooltip.If you want to open the form
If you have any other questions, we will be happy to assist you.