Skip to main content
tylerc64924960
Participant
September 11, 2018
Answered

Duplicating in one block

  • September 11, 2018
  • 1 reply
  • 329 views

So the title is slightly misleading because it would an insanely long title.

Basically, I have created a form and it is two pages, I want the name to be at the top of the second page.  To complete this at the moment I have just named the two fields the same name but I cannot make either one read only without effecting the other.  Is there a way to get this done whether through JS or some other setting?

This topic has been closed for replies.
Correct answer Bernd Alheit

At the calculation of the read only field use this:

event.value = this.getField("name").value;

1 reply

Bernd Alheit
Community Expert
Bernd AlheitCommunity ExpertCorrect answer
Community Expert
September 11, 2018

At the calculation of the read only field use this:

event.value = this.getField("name").value;

tylerc64924960
Participant
September 11, 2018

Thanks that worked just like I wanted it to