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
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
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
---------------------------------------------------------------------------------
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
This topic is locked and no more replies can be posted.