- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Here is the code that I have compiled
TopmostSubform.Page1.DropDownList2::exit - (JavaScript, client)
switch (this.rawValue)
{
case "Section B":
page2.positionedSubform.optionB.presence = "visible";
page3.positionedSubform.optionB1.presence = "visible";
page4.positionedSubform.optionC.presence = "invisible";
page5.positionedSubform.optionD.presence = "invisible";
break;
case "Section C":
page2.positionedSubform.optionB.presence = "invisible";
page3.positionedSubform.optionB1.presence = "invisible";
page5.positionedSubform.optionD.presence = "invisible";
page4.positionedSubform.optionC.presence = "visible";
break;
case "Section D":
page2.positionedSubform.optionB.presence = "invisible";
page3.positionedSubform.optionB1.presence = "invisible";
page4.positionedSubform.optionC.presence = "invisible";
page5.positionedSubform.optionD.presence = "visible";
break; }
Hopefully you will be able to spot a beginners mistake.
Thanks
Views
Replies
Total Likes