SharePoint Online Modern Experience Multi-Line Field Display

New Contributor

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!

5 Replies
I have already answered this on another thread...short answer: not currently and you will need to develop a SPFx Extension for this

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"
         }
      }
    ]
 }

Would the SPFx Extension support multiline column with Enhanced Rich text in it?