Karim Ali
Karim Ali

Reputation: 2453

How can I remove delete button from Dhtmlx Scheduler "onLightbox" event?

I added the following line in my "onLightbox" event but it doesn't do anything.

scheduler.config.buttons_right=[];

Upvotes: 0

Views: 1847

Answers (2)

Vahe92
Vahe92

Reputation: 51

I think it also could be added inside "onBeforeLightbox" to get more control:

scheduler.attachEvent("onBeforeLightbox", function (id, mode, event) {
    scheduler.config.buttons_right = [];
}

Upvotes: 0

Aquatic
Aquatic

Reputation: 5154

It need to be added before scheduler.init call ( outside of onLightbox event ) as this is a global configuration.

Upvotes: 1

Related Questions