I have a dropdown option. When user will click on item2 a user input field will open.I don’t know how to do this with dropdown item using wix code and property panel.Please help me out.
Hello,
To do this, select the drop down’s onChange() event and insert this into that event function:
Also make sure to keep the text field hidden on load.
//if the selected index is the second item (start at 0)
if($w('#dropDown').selectedIndex === 1){
$w('#textField').show();
}