我正在在线使用Sharepoint中的自定义列格式(JSON)。当我在查询列上应用自定义格式时,它将停止显示对话框窗口(带有其他信息) 为了更好地理解,我附上照片: when you click on number 2 565 it will show you this dialog window
但是当我在查找列上添加自定义格式时,它不起作用。这是我格式化的代码:
{"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"txtContent": "@currentField.lookupValue",
"style": {
"background-color": "=if([$TypZak_x002e_] == 'Spedice' && @currentField == '', '#e81123','transparent')"
},
"children": [
{
"elmType": "buttom"
}
]
}
结束此代码的结果是,当添加查找值时,背景将再次透明。 But this code disable showing dialog window.
注意:当在Web浏览器上打开检查并找到元素buttom时,它具有新的类:class="sp-field-customFormatter"
。
之前是:
class="ms-Link od-FieldRender od-FieldRender-lookup root-173"
有人对此有经验,或对如何解决此问题有任何建议吗?