试图在SharePoint列表中实现水平平铺/按钮视图,以使用关联的列表属性Web部件,但是项目选择不起作用,如果可能的话,请在JSON中寻找解决方法。
我试图寻找一个customRowAction设置,该设置可以相同的方式工作,但是什么也没找到。 “ hideSelection”:“ true”,似乎完全关闭了选择项目的功能。
我希望能够单击一个列表项,并将其重新显示为“选定”项,以触发关联的“列表属性” Web部件以显示项目内容。 OOTB可以正常运行,但不能与JSON中显示的列表视图样式相同。
{
"schema": "https://developer.microsoft.com/json-schemas/sp/view-formatting.schema.json",
"hideSelection": "true",
"hideColumnHeader": "true",
"rowFormatter": {
"elmType": "div",
"style": {
"float": "left"
},
"children": [
{
"elmType": "button",
"customRowAction": {
"action": "defaultClick"
},
"attributes": {
"class": "ms-bgColor-themeLighterAlt ms-bgColor-themePrimary--hover ms-fontColor-white--hover"
},
"style": {
"display": "flex",
"flex-wrap": "wrap",
"min-width": "150px",
"min-height": "50px",
"margin-right": "10px",
"margin-top": "10px",
"box-shadow": "2px 2px 4px darkgrey"
},
"children": [
{
"elmType": "div",
"style": {
"text-align": "center",
"margin": "auto"
},
"children": [
{
"elmType": "div",
"attributes": {
"class": "sp-row-title "
},
"txtContent": "[$Phase]"
}
]
}
]
}
]
}
}