更改共享点列表中列的类型



如何在JSON代码的共享点列表中更改列的类型?

{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json"
}
不,据我所知,列格式只能更改列字段中的显示,而不能更改列类型。

有关列格式的更多详细信息,您可以参考:

https://learn.microsoft.com/en-us/sharepoint/dev/declarative-customization/column-formatting

https://learn.microsoft.com/en-us/sharepoint/dev/declarative-customization/formatting-syntax-reference

SharePoint JSON格式只能用于自定义SharePoint列表和库中的列和视图的显示。

只能将列的显示更改为其他类型。

例如:将字段值转换为超链接(基本(-此示例显示如何将文本字段转换为超链

您可以使用setValue设置列的值。

例如:

{
"elmType": "div",
"txtContent": "[$FieldName]",
"customRowAction":{
"action": "setValue",
"actionInput": {
"FieldInternalName_1": "FieldValue_1",
"FieldInternalName_2": "FieldValue_2",
}
}
}

但是,您不能在列设置中更改实际的列/数据类型。

文档

  1. 列格式
  2. 视图格式

相关内容

  • 没有找到相关文章

最新更新