Forums

Chronoform V6 Dyanamic Dropdown

surendersingh 02 Jun, 2017
Hi, I have two dropdown box Course and Branch,
If I select Course=Btech then Branch dropdown show only TT, TC, CE options,
If I select Course=MTech then Branch dropdown show only IT, Fashion

How, Can i do it in CF6

please help and
Thanks in advance
ausfiero 22 Jun, 2017
Based on what you have above you need 3 dropdown lists with the following. What will happen is only the first list will show. When a selection is made it will activate the 2nd or 3rd list based on choice. This is one way of doing it. There is probably others too.

---------------------------------------------------------------------------------

Dropdown List 1

Under General Tab
Label: Select Course / Value: course_list / Multi-Select: Single
Options:
select_course_list=Please Select
btech=Btech
mtech=Mtech

Note: Selected Values and ID not needed unless you want to style it with the id.

Under Validation Tab
Select Yes Slider

Under Events Tab (multiple events)
On: selecting / Value: select_course_list / Actions: hide & disable validation / Element Identifier: btech_branch_list
On: selecting / Value: select_course_list / Actions: hide & disable validation / Element Identifier: mtech_branch_list
On: selecting / Value: btech / Actions: show & enable validation / Element Identifier: btech_branch_list
On: not selecting / Value: btech / Actions: hide & disable validation / Element Identifier: btech_branch_list
On: selecting / Value: mtech / Actions: show & enable validation / Element Identifier: mtech_branch_list
On: not selecting / Value: mtech / Actions: hide & disable validation / Element Identifier: mtech_branch_list

---------------------------------------------------------------------------------

Dropdown List 2

Under General Tab
Label: Select Branch / Value: btech_branch_list / Multi-Select: Single
Options:
select_mtech_branch_list=Please Select
it=IT
fashion=Fashion

Note: Selected Values and ID not needed unless you want to style it with the id.

Under Validation Tab
Select Yes Slider

Under Events Tab
No Events Needed

---------------------------------------------------------------------------------

Dropdown List 2

Under General Tab
Label: Select Branch / Value: mtech_branch_list / Multi-Select: Single
Options:
select_mtech_branch_list=Please Select
tt=TT
tc=TC
ce=CE

Note: Selected Values and ID not needed unless you want to style it with the id.

Under Validation Tab
Select Yes Slider

Under Events Tab
No Events Needed
ausfiero 22 Jun, 2017
I mixed up what is on the 2 lists but you will get the idea.
This topic is locked and no more replies can be posted.