无法选择水平视图格式的列表项

时间:2019-06-25 04:19:18

标签: json listview sharepoint-online web-parts

试图在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]"
              }
            ]
          }
        ]
      }
    ]
  }
}

1 个答案:

答案 0 :(得分:0)

如果要在“列表属性” Web部件中显示项目,则需要使用默认的列表视图样式,如果使用JSON格式自定义列表视图,则将无法使用。

使用您的JSON格式,当我们单击按钮时,我们可以在同一页面的面板中看到项目数据。为什么要显示在“列表属性” Web部件中?

enter image description here