Nintex for SharePoint Forum
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Does anyone know a way to set recurrence to yes by default on a Nintex Form? Thanks
Solved! Go to Solution.
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');
}
})