0

在我的 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

4

1 回答 1

1

没有可用于配置指向任何组件标签的链接的功能。

是的,您需要使用富文本组件,如下所示:

 {
  a!richTextDisplayField(
    value: {
      a!richTextItem(
        text: "Report ",
        style: "STRONG",
        size: "MEDIUM_PLUS"
      ),
      a!richTextItem(
        text: "End of Month",
        style: "STRONG",
        size: "MEDIUM_PLUS",
        link: a!safeLink(
          /*label: "End of Month",*/
          uri: "http://the-full-url-pointing.to/end_of_month"
        )
      )
    }
  ),
  a!sectionLayout(contents: {})
}

用户界面截图: 在此处输入图像描述

此外,通过富文本组件,您可以调整文本的大小、颜色和样式。

我希望这有帮助。

于 2021-08-10T23:28:04.670 回答