How to add values in each row


I'm currently passing emailaddresses in each line but when i submit it is storing values as test@test.com;test2@test.com  but it has tostore in db as in new line and it has to be passed to an integration as {"test@test.com,test2@test.com"} 

Can someone please help

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to ZAINAB

    hi Zainab! 
    in the earlier code you shared I see you have done submit:true() for the Submit button. It means when this form submits the process will continue after the UI node. 

    then in saveinto you are doing start-process as well. Its not a good design.
    can you share the current code for Submit button widget. Also summarise the functioning of your main process as well as this start process. What are you trying to do here

Children