- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hello Cory,
You can write the script in the "mouseEnter" event of the DropDownList2 object.
if(DropDownList1.rawValue == "Dept1")
{
DropDownList2.clearItems();
DropDownList2.addItem("Sub Dept toys");
DropDownList2.addItem("Sub Dept games");
DropDownList2.addItem("Sub Dept puzzles");
}
if(DropDownList1.rawValue == "Dept2")
{
DropDownList2.clearItems();
DropDownList2.addItem("Sub Dept towels");
DropDownList2.addItem("Sub Dept sheets");
DropDownList2.addItem("Sub Dept napkins");
}
if(DropDownList1.rawValue == "Dept3")
{
DropDownList2.clearItems();
DropDownList2.addItem("Sub Dept cookware");
DropDownList2.addItem("Sub Dept dishes");
DropDownList2.addItem("Sub Dept glassware");
}
Thanks,
Debadas.
Views
Replies
Total Likes