Multiline field text in a Grid App

I have a form with a multiline field (text). it showed well in the form (multiple lines), but When I want to see this field in a Grid app., althoug I setuped this field as multiline, it is showed in one line.
I have tryed to setup as html editor ando now it works well, but I don’t want use this way in the form.
Is there any way to show multine line text field in the grid app.
thanks

HI, SC has not same data type for grid apps. so yuu must use the propertie Width,
Display Seeting:
Width = 250

the problem is I don’t know the exact point where il should be cutted the linea… There are lines con 10 caracter , other con 40, so on.
If I use editmor html it break well. but I don’t limit the size of characters as It happen in text field

some Template show these fields better than other! Try with other Templates maybe: SC7_blue.

In OnRecord event of grid, I will normally do
{your_multi_line_field} = nl2br({your_multi_line_field});

Thanks . Apart from You explain I found this
select regexp_replace(tituloCliente, ‘(\n)’, ‘
’)
for if someone it find valuable