Created
May 8, 2025 14:43
-
-
Save bwya77/3698205c8c2af75389abc372db7e5e16 to your computer and use it in GitHub Desktop.
SharePoint List - Custom Multi-Line Text Format
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", | |
"style": { | |
"display": "flex", | |
"flex-direction": "column", | |
"min-height": "40px", | |
"max-height": "120px", | |
"padding": "8px", | |
"border-radius": "4px", | |
"border": "1px solid #e0e0e0", | |
"box-shadow": "0 1px 3px rgba(0,0,0,0.1)", | |
"background-color": "#ffffff", | |
"transition": "all 0.3s ease" | |
}, | |
"attributes": { | |
"class": "ms-fontColor-neutralPrimary" | |
}, | |
"children": [ | |
{ | |
"elmType": "div", | |
"style": { | |
"overflow-y": "auto", | |
"width": "100%", | |
"padding-right": "4px", | |
"line-height": "1.5", | |
"font-size": "14px" | |
}, | |
"txtContent": "@currentField", | |
"attributes": { | |
"title": "@currentField" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment