Html5 Markup in datagrid cell

Hello,

I have an issue as I can not show full rendered text in a cell.

@((MarkupString)data.Note)

This only shows text in one line with ellipsis. If I display the text in html form and add style="white-space: pre-wrap" it displays all html code on multiple lines. Is there a work around this?

Hi @bakogda,

This is the default behavior. If you want your text to wrap and expand the row use white-space: pre-wrap or remove the ellipsis styling:

.rz-cell-data {
    overflow: visible !important;
    white-space: normal !important;
}