Does anyone know a way to set recurrence to yes by default on a Nintex Form? Thanks
Solved
Calendar recurrence set to yes by default
Best answer by emha
due to how recurrence flag works it's little tricky, but try following
- add single line text control on form, set its default value to NO and configure some javascript variable for it, eg RecurrenceFlagAlreadySet
if you want you can hide the control with formatting rule

- next configure a CSS class for recurrence checkbox, eg RecurrenceFlag

- finally add following javascript code into forms custom javascript setting
NWF.FormFiller.Events.RegisterAfterReady(function () {
if ( (! NWF$('.RecurrenceFlag input[type="checkbox"]').prop('checked')) && (NWF$('#'+RecurrenceFlagAlreadySet).val()=='NO') ){
NWF$('.RecurrenceFlag input[type="checkbox"]').click();
NWF$('#'+RecurrenceFlagAlreadySet).val('YES');
}
})
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.