json 设置SharePoint列表视图的格式

hwamh0ep  于 2023-02-26  发布在  其他
关注(0)|答案(1)|浏览(145)

我正试着在sharepoint列表中做几件事,但没有任何进展。我想知道你是否能帮忙。
我尝试首先-工作,所以当有人点击'提交'按钮(重命名'exitGridView'),它不仅保存提交,但重定向到另一个网址?这是可能的,只使用自定义JSON编辑器在sharepoint?
其次,如果我们能在网格视图中删除"添加新项目",这样他们就只能看到已经存在的内容,那就太好了。同样,这也是可能的吗?
到目前为止,JSON看起来是这样的:

{
  "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json",
  "additionalRowClass": {
    "operator": ":",
    "operands": [
      {
        "operator": "==",
        "operands": [
          {
            "operator": "%",
            "operands": [
              "@rowIndex",
              2
            ]
          },
          0
        ]
      },
      "sp-css-backgroundColor-BgLightGray30",
      {
        "operator": ":",
        "operands": [
          {
            "operator": "==",
            "operands": [
              {
                "operator": "%",
                "operands": [
                  "@rowIndex",
                  2
                ]
              },
              1
            ]
          },
          "sp-css-backgroundColor-noFill",
          ""
        ]
      }
    ]
  },
  "commandBarProps": {
    "commands": [
      {
        "key": "exitGridView",
        "text": "Submit"
      },
      {
        "key": "editInGridView",
        "text": "Edit"
      },
      {
        "key": "new",
        "hide": true
      },
      {
        "key": "export",
        "hide": true
      },
      {
        "key": "automate",
        "hide": true
      },
      {
        "key": "share",
        "hide": true
      },
      {
        "key": "integrate",
        "hide": true
      }
    ]
  }
}

任何帮助都将不胜感激。

jtoj6r0c

jtoj6r0c1#

1.在点击exitGridView按钮后,是否可以使用视图格式重定向到另一个URL?

  • 据我所知很遗憾这是不可能的

1.是否可以隐藏在命令栏中添加新项目?

  • 是的,这是可能的。你可以隐藏命令栏上的按钮,改变文本或图标等等。你会找到更多的信息here

请不要忘记将此标记为答案,如果它有助于您。

相关问题