Wrap Grid Columns Text (Angular)

I have columns with long text, I need the grid to wrap the text instead of truncating
Please advice on easiest way
*** Angular

Hi @ysaad,

You can check my response in this forum thread.

1 Like

If the contents of the field are HTML can I display it properly formatted?
In standard implementation I used <div [innerHTML]= "Here is the contents of the field in HTML"
*** Where is the best way to place such code in Radzen ?

You should be able to use the same in the Template of the DataGrid column:

<div [innerHTML]="data.PropertyName"></div>
1 Like