Created
April 17, 2020 16:56
-
-
Save ktskumar/f337004cc9dbf17d1ce63fef0dcaccb4 to your computer and use it in GitHub Desktop.
Column Formatting in SharePoint List to show Image in Custom card
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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