Sap 动态隐藏Adobe表单中的徽标?

Sap 动态隐藏Adobe表单中的徽标?,sap,adobe,livecycle-designer,adobe-form,Sap,Adobe,Livecycle Designer,Adobe Form,如何基于页面标题设置Adobe表单中图像的可见性。 页面标题在每个页面上都会有所不同,这取决于页面标题的值设置图像的可见性 data.#pageSet[0].Page1.AUSTRALIAN_LOGO::initialize - (FormCalc, client) if( it_title.data.flag.rawValue == 'X' ) then $.presence = "hidden"; endif data.#pageSet[0].Page1.GLOBAL_LOGO::init

如何基于页面标题设置Adobe表单中图像的可见性。 页面标题在每个页面上都会有所不同,这取决于页面标题的值设置图像的可见性

data.#pageSet[0].Page1.AUSTRALIAN_LOGO::initialize - (FormCalc, client)
if( it_title.data.flag.rawValue == 'X' ) then
$.presence = "hidden";
endif

data.#pageSet[0].Page1.GLOBAL_LOGO::initialize - (FormCalc, client)
$.presence = "hidden";
if条件不起作用,但没有if条件的条件起作用
语法正确吗?

试试这样的方法:

var flag = this.boundItem(xfa.event.newText)

if (flag eq "X")

 then AUSTRALIAN_LOGO.presence = "visible"

 else AUSTRALIAN_LOGO.presence = "hidden"

endif

在您的徽标退出事件中。别忘了将该表单设置为。

尝试以下操作:

var flag = this.boundItem(xfa.event.newText)

if (flag eq "X")

 then AUSTRALIAN_LOGO.presence = "visible"

 else AUSTRALIAN_LOGO.presence = "hidden"

endif

在您的徽标退出事件中。不要忘记将表单设置为。

查找数据标志的层次结构。导航到数据节点。查找数据标志的层次结构。导航到数据节点。