Our powerful JS Calendar component


Post by abhi »

How can i disable default Add/Edit Event on Double Click/Single Click on Event. And add scheduleDblClick/onEventClick to trigger my custom Add/Edit Event dialog box


Post by mats »

How can i disable default Add/Edit Event on Double Click/Single Click on Event.

Disable this feature https://bryntum.com/docs/calendar/api/Calendar/feature/EventEdit

And add scheduleDblClick/onEventClick to trigger my custom Add/Edit Event dialog box

This is described in this guide: https://bryntum.com/docs/calendar/guide/Calendar/customization/replaceeventedit


Post by abhi »

Awesome. Tried below code. Working fine!!

features : {
    eventEdit: {
    	disabled: true
    } 
 }

Thanks


Post Reply