Change recurrence of event from default monthly to other.

Hello,

is this possible to do ? Normally by default the monthly reccurence is picked.

I want the user to have only weekly reccurence. I can remove the rest of the radioButtons with CSS but the problem is that the monthly reccurence is the default one.

Hi,
currently there is no good way for setting the default values for the recurring form.
So the setting can be done by activating controls manually when the form is openedscheduler.attachEvent("onLightbox", function(){ document.querySelectorAll(".dhx_form_repeat .dhx_repeat_left input")[1].click();// invoke click on 'Weekly' radiobutton });

This will be sufficient :slight_smile:

Thanks a lot!