Forum Discussion
Jeff Deutsch
Jan 17, 2018Copper Contributor
SharePoint Online Modern Experience Multi-Line Field Display
As it stands right now, my "modern" experience lists cut off multi-line fields at about 4 lines. Is there a way to allow all of the lines to be visible for all items?
Thanks!
Martin-Coupal
May 07, 2018Steel Contributor
Can try this. It will put a scroll. You can play with the max-eight
In the column formatting option:
{
"$schema": "http://columnformatting.sharepointpnp.com/columnFormattingSchema.json",
"debugMode": true,
"elmType": "div",
"children": [
{
"elmType": "div",
"txtContent": "@currentField",
"style": {
"padding":"11px 8px",
"max-height":"64px",
"overflow-y":"auto",
"align-items":"flex-start"
}
}
]
}
Carlos Montilla
May 06, 2019Copper Contributor
Martin-Coupal - Very slick!!!
- Beau CameronMay 07, 2019MVP
Carlos Montilla You can also do it without the scroll. See post here https://thechriskent.com/tag/multi-line-text/