我想在 Livecycle 中创建一个包含子部分的下拉列表。例如:
如果我的下拉菜单让某人选择咖啡或果汁,而他们选择了果汁,那么它会询问哪种果汁。
-咖啡 - 黑 - 糖 - 奶油 - 糖和奶油 - 果汁 - 橙子 - 苹果 - 葡萄
这可能吗?
我想在 Livecycle 中创建一个包含子部分的下拉列表。例如:
如果我的下拉菜单让某人选择咖啡或果汁,而他们选择了果汁,那么它会询问哪种果汁。
-咖啡 - 黑 - 糖 - 奶油 - 糖和奶油 - 果汁 - 橙子 - 苹果 - 葡萄
这可能吗?
我知道当从下拉菜单中进行选择时,您可以使其他项目(如下拉菜单、文本框、单选按钮等)可见。因此,如果用户选择咖啡,则会出现一个带有脱咖啡因/常规的单选按钮和带有奶油、糖等的复选框。
以下脚本来自具有纸张选择的表格,并且基于所选纸张,下拉菜单中可用的纸张重量选择变得可见。
**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";
}