Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VelinGeorgiev/870d8f1958e7845a77f8f40696a129dd to your computer and use it in GitHub Desktop.
Save VelinGeorgiev/870d8f1958e7845a77f8f40696a129dd to your computer and use it in GitHub Desktop.
SharePoint column formatting - Image with URL
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"children": [
{
"elmType": "a",
"attributes": {
"href": "https://blog.velingeorgiev.com",
"target": "_blank"
},
"children": [
{
"elmType": "img",
"attributes": {
"src": "= @currentWeb + '/SiteAssets/Badges/1-' + @currentField + '.png'"
},
"style": {
"width": "128px",
"height": "128px",
"cursor": "pointer"
}
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment