wrote:
Hey, first of all I'm using OutSystems 11 in case that matters.
So... I have a table that has 4 entity attributes (Nome,Tipo,ObjectivoActividade and ObjectivoEstrategico), both ObjectivoActividade and ObjectivoEstrategico are text fields that will have to handle up to 500 characters, here's what I have atm:
As you can see, the second row has alot of chars in "Objectivo Estratégico" is there any way I can make it so when the length of the text reaches the width of the cell it makes a new line under the first one and keeps on going there?
Hi Fabio,
I think it does what you are expecting. here the problem is you don't have space between the text so only this behavior is coming.
You can try this piece of CSS code to break without space text.
SyntaxEditor Code Snippet
word-wrap: break-word;
Regards,
Pankaj Pant