Skip to main content

I have sever check boxes that allow the user to add their own data. The field for add more is always at the bottom to the left. I would like it to append to the add other checkbox and label. How do I do that? It is in a separate table. I have done this before but keep getting stuck in Nintex.

Thank you,

Found it. I am still getting used to Nintex.

Instead of using the field ID I just went with the class.

jQuery

NWF$( ".RACE .nf-choice-control-textbox " ).appendTo( ".RACE .nf-fillin-option");
NWF$( ".SID .nf-choice-control-textbox " ).appendTo( ".SID .nf-fillin-option"); 
NWF$( ".HIST .nf-choice-control-textbox " ).appendTo( ".HIST .nf-fillin-option"); 

I have a lot of these and go from there. I will create a function to simply it. Just wish the text fields were not in a whole different div. Pulling them and creating a table with and placing them where ever I want would have been simpler. 

Thanks


Reply