How can I make a multi-selection in a form? | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by akshaaga

@yansu ,

Create a JavaScript which reads the value selected by the user and then if "All" is selected , then convert multiselect drop down to a normal dropdown .

If anything else is selected , then let it be a multiselect dropdown.

3 replies

CampaignerForLife
Level 5
August 11, 2023
abhinav99
Level 4
August 11, 2023

Hi @yansu ,

If you want to make a multisection like this :- 

use the below code in the input forms:-

<input xpath="@deliveryLabel" type="checkbox" checkedValue="Y"/>
<input xpath="@subjectLine" type="checkbox" checkedValue="Y" />
<input xpath="@status" type="checkbox" checkedValue="Y"/>

 

and of course make sure you have the relevant values in your data schema and then add the same in the input form.

akshaaga
Adobe Employee
akshaagaAdobe EmployeeAccepted solution
Adobe Employee
August 13, 2023

@yansu ,

Create a JavaScript which reads the value selected by the user and then if "All" is selected , then convert multiselect drop down to a normal dropdown .

If anything else is selected , then let it be a multiselect dropdown.