I am needing to show the same variable on a form multiple times. 1 will be the original variable and will editable. The 2nd just needs to be read-only. Is there a way without having to create a second variable and use JavaScript to copy values back and forth to just show the field again?
Question
Question
Can I Show The Same Variable Multiple Times on the Same Form?
asked on January 8, 2019
•
Show version history
1
0
Replies
replied on January 8, 2019
Unfortunately no, you cannot display the same variable twice. However, you can do this without JavaScript. In the second field, set it to read-only and in the Function section set it equal to the original field's variable; this will update automatically without having to add custom JavaScript.
0
0
replied on January 8, 2019
•
Show version history
Thank you for the suggestion Jason. I do not believe this will work for a table situation though, which is one of the variables I am dealing with. I am also working with radio fields.
1
0
replied on January 8, 2019
That makes sense.
You can use Functions to copy table values using the INDEX(table.column,ROW()) function, but you would still need JavaScript too add/remove a matching number of rows, and for the radio buttons.
0
0
You are not allowed to follow up in this post.