我试图通过下拉菜单在表单的一行数据中显示多列。
现在,它只是显示标题,我可以更改它。我想将其格式化为:
ID +“-”+标题
我在SPO的EDIT列中看到了JSON中的显示列格式,但我不知道这是否是我想要的。
谢谢!
发布于 2021-08-24 02:34:24
尝试下面的JSON代码。
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"txtContent": {
"operator": "+",
"operands": [
"[$ID]",
"-",
"[$Title]"
]
}
}

https://stackoverflow.com/questions/68896831
复制相似问题