我正试着在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
}
]
}
}
任何帮助都将不胜感激。
1条答案
按热度按时间jtoj6r0c1#
1.在点击exitGridView按钮后,是否可以使用视图格式重定向到另一个URL?
1.是否可以隐藏在命令栏中添加新项目?
请不要忘记将此标记为答案,如果它有助于您。