I have a repeating section on my form
When i click on the 'Add new row' action the above data should be copied over to the new row as shown below.
Does nintex forms 2013 provide this option?
I have a repeating section on my form
When i click on the 'Add new row' action the above data should be copied over to the new row as shown below.
Does nintex forms 2013 provide this option?
I want the data copied in the next row of the same repeating section but not another control.
the principle described on the link provided could be applied as well to copy row within the same repeating section. you just have to use the same selector for source and destination repeating section.
however, for one single repeating section it could be simplified to following small piece of code
(this works for single line text line which has configured CSS class 'TxtBoxClass')
NWF.FormFiller.Events.RegisterRepeaterRowAdded(function (){
var currRow = NWF$(argumentss0]s0]);
var prevRow = currRow.prev();
currRow.find('.TxtBoxClass input').val(prevRow.find('.TxtBoxClass input').val());
});
Thanks.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.