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

StackOverflow https://stackoverflow.com/questions/17578893

  •  02-06-2022
  •  | 
  •  

سؤال

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

scheduler.config.buttons_right=[];
هل كانت مفيدة؟

المحلول

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

نصائح أخرى

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

scheduler.attachEvent("onBeforeLightbox", function (id, mode, event) {
    scheduler.config.buttons_right = [];
}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top