You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a ConfiForm where I have defined a Smart multi-row field "users" which contains 3 text fields "name", "email" and "city".
I'm using ConfiForms IFTTT Integration Rules | event = onCreated | action = Create Jira Issue to create a Jira ticket with the information captured in 'users' smart multi-row.
My understanding is that the body in the IFTTT integration rule supports Velocity Template Language. I'm trying to use VLT to get all the data in the Users field (Which could be 1,2,3..n) depending on how many rows get added by the person submitting the form.
I have the following VLT.
#set($count = "")
#foreach($row in $users)
#set($name = $row.name)
#set($email = $row.email)
#set($city = $row.city)
#set($count = $velocityCount)
#end
I'm trying to get the values and concatenate them however I'm not even able to read the values in name, email and city. I do see that the count value gets updated to 1,2,3..n depending on the number of rows/users the submitter is adding to the form.
How do I go about reading the values in the smart multi-row? I have tried [entry.users.name] but this reads the value for me but restricted only to the very first User.
Hi @Srisaiyeegharan Kidnapillai and welcome to this community
Smart multi-row, as well as other smart fields holds only references to records it is linked to
There is no rich object behind it - just an UUID (or multiple, in case of multi-select fields) to a record in another form
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.