0

我正在尝试创建一个 livecycle 表单,您可以在其中根据用户输入隐藏/显示部分。

我正在使用单选按钮来指示应根据所选单选按钮显示哪个部分。整个表格会有很多,我要求表格流动并且没有空格。你能告诉我如何创造条件吗?

我有很多部分,我知道需要将部分的内容设置为流动,但我是在主窗体还是在每个部分都这样做?根据我选择使内容流动的子表单,它可以更改我不想要的部分对象的布局,因此我可能还需要有关如何更正此问题的建议。除了创建简单的表单外,我对 Livecycle 没有任何经验。我试图在整个网络上寻求帮助,但没有什么能告诉我我需要什么。任何帮助,将不胜感激。

我试图在我的一个单选按钮上使用此代码。它在更改事件中完全如下所示:

if (this.rawValue == "1")
{    
    xfa.resolveNode("Section2.Section2.1").presence="visible";      
    xfa.resolveNode("Section3").presence= "hidden";    
    xfa.resolveNode("Section2.Section2.2").presence = "hidden"    
}
else (this.rawValue == "0")
{    
    xfa.resolveNode("Section2.Section2.1").presence = "hidden";    
    xfa.resolveNode("Section3").presence= "hidden";    
    xfa.resolveNode("Section2.Section2.2").presence = "hidden";

}
4

1 回答 1

1

是的,您需要使根子表单(页面)布局流动而不定位。这将根据显示/隐藏行为自动重新定位包含的子表单。

你的代码应该说:

if (this.rawValue == 1)
{    
    xfa.resolveNode("Section2.Section2.1").presence="visible";      
    xfa.resolveNode("Section3").presence= "hidden";    
    xfa.resolveNode("Section2.Section2.2").presence = "hidden"    

else if (this.rawValue == 2)
{    
    xfa.resolveNode("Section2.Section2.1").presence = "hidden";    
    xfa.resolveNode("Section3").presence= "hidden";    
    xfa.resolveNode("Section2.Section2.2").presence = "hidden";

}

我倾向于使用 click 事件而不是带有单选按钮的 change 事件,例如这样。

干杯

于 2013-11-14T23:47:36.213 回答