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!
Hobus
May 26, 2023Copper Contributor
What I found worked the best for me because I needed bullets was to:
1. In the settings for multiple lines of text change 'Specify the type of text to allow' to plain text
2. When I added text I couldn't use bullets I used - (which created a bullet but if I hit back space removed the bullet)
3. In the 'Column Fomatting:' I used Martin-Coupal code
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"txtContent": "@currentField",
"style": {
"white-space": "normal",
"padding": "11px 0"
},
"attributes": {
"class": "ms-fontColor-themePrimary"
}
}