Lightbox recurring events

Is it possible to set the enable button on the light box always true, that is the recurrence parameters will always be visible? Is it possible to hide the enable button?

Hi,
this can be done by manipulating dom elements of the lightbox, here is a code

scheduler.attachEvent("onLightbox", function(){ var recurring = scheduler.formSection("recurring").node.parentNode; var button = recurring.querySelector(".dhx_custom_button"); button.click(); button.style.display = "none"; }); scheduler.attachEvent("onAfterLightbox", function(id){ scheduler.resetLightbox(); });