Our powerful JS Calendar component


Post by bin_yu »

Hi All,

How should I remove the following 4 buttons, see the following screenshot, please.

how to remove context button.png
how to remove context button.png (224.63 KiB) Viewed 80 times

Post by ghulam.ghous »

Checkout the code snippets here: https://bryntum.com/products/calendar/docs/#Calendar/feature/EventMenu

    features : {
        eventMenu : {
            items : {
                copyEvent : null,
                cutEvent  : null, 
                deleteEvent : null
            }
        },
}

Post by bin_yu »

Thank you, I updated my config as the following, and only edit showed, this is what i want.

    eventMenuFeature: {
        items:{
            duplicate: false,
            copyEvent: false,
            cutEvent: false, 
            deleteEvent: false,
        }
    },
eventMenu.png
eventMenu.png (177.54 KiB) Viewed 72 times

Post Reply