I have created a sample form with firstName & lastName input field with Submit button. On click of submit button I am calling the userInfo flow(which concatenate the name using script node) by mapping the flow input value like page.firstName.
But the flow is returning empty result in console. What I am doing wrong here?
May I know how to bind&map the user input fields value to flow.
Hi @Shamnad_KS , I am using Studio9 , I tried creating FormGroup in script node and it is not working.
I don’t know where to create a new FormGroup? Could you please help me.
Thanks for helping me @Shamnad_KS .
PFB the solution.
1: Add a formGroup custom property in FORM component like this Key:[formGroup] and Value: page.formName 2: Add formControlName custom property for the Input fields.
Eg: formControlName = firstName 3: Use a dependency node in the onInit flow to import @angular/forms.