Overflow in Grid Column

0
Hi people! As the title said I got problems with data overflow in data grid widgets. Pictures with: datagrid, datagrid2, and templategrid.   If it could be posible I want an outcome like the templategrid when there is a lot of data but in the datagrid. I tried with scss changes like: overflow-y: scroll; or change heigth and width of that column but it doesn´t work. Thanks in advance!!
asked
1 answers
0

if you want to try the overflow function, try the overflow-x instead of overflow-y

On  the other hand, you could have a look at word-break to see if you can break it.

Maybe even combining it with Max width ch to set a maximum amount of visibile characters on a line. I have added a link to some more info: Link

 max-width: 30ch;
answered