Does anyone know a way to set recurrence to yes by default on a Nintex Form? Thanks
Page 1 / 1
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 inputttype="checkbox"]').prop('checked')) && (NWF$('#'+RecurrenceFlagAlreadySet).val()=='NO') ){
NWF$('.RecurrenceFlag inputitype="checkbox"]').click();
NWF$('#'+RecurrenceFlagAlreadySet).val('YES');
}
})
Thanks for posting this, exactly what I was after, works perfectly.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.