【问题标题】:SharePoint Online - Lookup Display multiples values in FormSharePoint Online - 查找在表单中显示多个值
【发布时间】:2021-10-24 01:17:26
【问题描述】:

我正在尝试通过下拉菜单在表单的一行数据中显示多列。

现在,它只是显示标题,我可以更改它。我想将其格式化为:

ID + " - " + 标题

我在 SPO 的 EDIT 列中看到了 JSON 中的显示列格式,但我不知道这是否是我要查找的内容。

谢谢!

【问题讨论】:

    标签: json sharepoint lookup sharepoint-online


    【解决方案1】:

    试试下面的 JSON 代码。

    {
      "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
      "elmType": "div",
      "txtContent": {
      "operator": "+",
      "operands": [
          "[$ID]",
          "-",
          "[$Title]"
        ]
      }
    }
    

    【讨论】:

      猜你喜欢
      • 2019-07-21
      • 2021-01-16
      • 2017-01-07
      • 1970-01-01
      • 2021-06-20
      • 2018-04-07
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多