How do I able and disable textbox in a form based on the selection value of select box from the other form? Please help..

  • No labels

1 Comment

  1. Hi Suitha,

    If I get it right, do you want to enable/disable any textbox in a form based on the value of the selectbox element in the previously submitted form in the same process?

    If yes, then maybe you can use a Custom HTML field in your form and write a JS to set the 'readonly' attribute of the textbox field to true or false based on the values of the selectbox field from the previous form. To get the selectbox field's value, you could use the Hash Variables if both these forms are in the same process.

    Hope this helps,

    Ashutosh