Our powerful JS Calendar component


Post by srilaxmi »

I am trying to hide all the edit button, delete button and close button which is provided by default in the eventtooltip but I am unable to achieve that. could you please help me on this.


Post by mats »

You mean the EventEditor?


Post by alex.l »

Please use https://www.bryntum.com/docs/calendar/#Core/widget/Tooltip#config-tools

Here is an example:

    features : {
        eventTooltip : {
            tooltip : {
                closable : false,
                tools : {
                    edit   : false,
                    delete : false
                }
            }
        }
    }

All the best,
Alex


Post by srilaxmi »

@Alex It worked for me. Thank you:)


Post Reply