Skip to main content
Participant
February 20, 2024
Answered

Duplicate Text Field with Unique Settings

  • February 20, 2024
  • 1 reply
  • 917 views

I want to have a certain text field be duplicated across all pages, but I only want the first instance to be fillable, the rest I want to be read-only. Is there a way to do this?

This topic has been closed for replies.
Correct answer Nesa Nurani

Yes, but not with same field, create second field and duplicate that field across pages and name it something like "Copy", then in original field as 'Validate' script use this:

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

1 reply

Nesa Nurani
Community Expert
Nesa NuraniCommunity ExpertCorrect answer
Community Expert
February 20, 2024

Yes, but not with same field, create second field and duplicate that field across pages and name it something like "Copy", then in original field as 'Validate' script use this:

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

Participant
February 20, 2024

Thank you!!