I am trying to customize a form where I would like to show/hide fields based on what choices the user has selected.
E.g. Dropdown values are A, B, C
If user selects A and B, show controls X (related to A) and Y, Z (related to B)
If user selects only A, show control X. Similarly, if user selects only B, show controls Y and Z.
I am able to do that using a regular dropdown (where multi-select disabled) and with radio buttons as well using the custom JavaScript section on the form.
Can this be done using JavaScript or are there any alternatives? Thanks in advance!