SHAREPOINT 2013 LİSTEYE (TABLOYA) JSON BUTON EKLEME
Perşembe, Ocak 17, 2019 /
Tamer YIGIT
/
SharePoint
Sharepoint 2013'te listeye Add Column seçeneği ile yeni bir sütun eklenerek aşağıdaki kod ile özel bir buton oluşturulabilir.
Aşağıdaki örnek tıklandığında bir flow tetiklemektedir. ID bölümüne tetiklenecek flowun ID bilgisi yazılmalıdır.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "span",
"style": {
"color": "#0078d7"
},
"children": [
{
"elmType": "span",
"attributes": {
"iconName": "Flow"
}
},
{
"elmType": "button",
"style": {
"border": "none",
"background-color": "transparent",
"color": "#0078d7",
"cursor": "pointer"
},
"txtContent": "Send to Manager",
"customRowAction": {
"action": "executeFlow",
"actionParams": "{\"id\": \"183bedd4-6f2b-4264-855c-9dc7617b4dbe\"}"
}
}
]
}
Detaylı bilgi için : https://docs.microsoft.com/en-us/sharepoint/dev/declarative-customization/column-formatting