在我的 Appian 界面中,我有一个部分布局,我想要标签的一部分,即可"End of Month"
点击:
{
a!sectionLayout(
label: "Report ""End of Month""",
contents: { [...] }
)
}
我想过使用链接组件,但以下内容不起作用(它给了我一个冗长、不可读的标签):
{
a!sectionLayout(
label: {
concat("Report ",
a!linkField(
label: "",
links: a!safeLink(
label: "End of Month",
uri: "http://the-full-url-pointing.to/end_of_month"
)
)
},
contents: { [...] }
)
}
在部分布局中是否有使用富文本组件的冗长解决方案?label