我想制作一个包含Livecycle子部分的下拉列表。例如:
如果我的下拉让一些人可以选择咖啡或果汁,他们会选择果汁,那么它会询问什么样的果汁。
-Coffee - 黑色 - 糖 - 奶油 - 糖和糖奶油 -果汁 - 橙子 - 苹果 - 葡萄
这可能吗?
答案 0 :(得分:0)
我知道当您从下拉列表中选择时,您可以制作其他项目,如下拉菜单,文本框,单选按钮等。因此,如果用户选择咖啡,则会出现带有无咖啡因/常规的单选按钮以及带有奶油,糖等的复选框。
以下脚本来自具有纸张选择的表单,并且基于所选择的纸张,可以看到下拉列表中可用的纸张重量选项变得可见。
**This code in java script place in the mouse exit**
if (Paperdropdownlist.rawValue == "Astrobrights") {
Astrobrightweight.presence = "visible";
} else {
Astrobrightweight.presence = "invisible";
}
**this script was in the form ready of the drop down that would become visible**
if (Paperdropdownlist.rawValue == "Astrobrights") {
Astrobrightweight.presence = "visible";
} else {
Astrobrightweight.presence = "invisible";
}