Skip to content

Instantly share code, notes, and snippets.

@ktskumar
Created April 17, 2020 16:56
Show Gist options
  • Save ktskumar/f337004cc9dbf17d1ce63fef0dcaccb4 to your computer and use it in GitHub Desktop.
Save ktskumar/f337004cc9dbf17d1ce63fef0dcaccb4 to your computer and use it in GitHub Desktop.
Column Formatting in SharePoint List to show Image in Custom card
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"txtContent": "@currentField",
"customCardProps": {
"formatter": {
"elmType": "img",
"style": {
"max-width": "250px"
},
"attributes": {
"src": "[$ImageColumn]"
}
},
"openOnEvent": "hover",
"directionalHint": "rightCenter",
"isBeakVisible": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment