I need help in displaying the input radio button option based on previous input radio button option selection. If i have below options created as inputs :
<input type="Radio" token="environment">
<label >ENV<label>
<choice value="site1">s1</choice>
<choice value="site2">s2</choice>
<choice value="site3">s3</choice>
</input>
<input type="Radio" token="sub-environment">
<label >S-ENV<label>
<choice value="site1-Area1">s1A1</choice>
<choice value="site1-Area2">s1A2</choice>
<choice value="site1-Area3">s1A3</choice>
<choice value="site2-Area1">s2A1</choice>
<choice value="site2-Area2">s2A2</choice>
<choice value="site2-Area3">s2A3</choice>
<choice value="site3-Area1">s3A1</choice>
<choice value="site3-Area2">s3A2</choice>
<choice value="site3-Area3">s3A3</choice>
<choice value="*">All</choice>
</input>
I wan to dynamically display the input fields based on the first radio button option selection. if user selects site1 radio button option automatically display radio button option labels labels s1A1,s1A2, s1A3 and All if user selects site2 radio button option automatically display radio button option labels labels s2A1,s2A2, s2A3 and All if user selects site3 radio button option automatically display radio button option labels labels s3A1,s3A2, s3A3 and *
... View more