Create input field with Logic Jump

Hi,

I am wondering if its possible to add an input field with logic jump.

For example, I want to add a field to select “Single”, “Married” or “Engaged”
I hope another a text field will pop up asking “Descript a boy/girl you want to meet”, when you had selected “Single”
…and a text field will pop up asking hows ur married life, after you selected “Married”
…just for an example

Hi,
It is possible,
Here is a sample on the code:

if ($w('#inputFieldStatus').value === 'Single') {
    $w('#inputFieldText').placeholder = 'Descript a boy/girl you want to meet'; // #inputFieldText element should be set in "properties" menu to hidden on load
    $w('#inputFieldText').show();
}

Just connect the drop down to “onChange” event and add your code
This example demonstrates how to show and hide elements.
Feel free to paste here your code and we will do our best to assist you.
Good luck!
Roi

thx