Skip to main content
alexisrodrigob
Participant
January 6, 2017
Question

How to carry out the script to select a radio input block a text field?

  • January 6, 2017
  • 0 replies
  • 200 views

I need your help! I want to implement a radio input that when, for example, the user selects one opcion, block  tone particular text-field.

I am using it for another function the checkbox as follows:

if (this.getField("xxx").value  == "Off"){

    this.getField("yyy").readonly=false;

   

}   

else {

    this.getField("xxx").readonly=true;

    this.resetForm(["yyy"]);

}

But does not fulfill the necessary function since it allows multiple selection.

This topic has been closed for replies.