Adding a Ellipsis

0
Hello Forum, I have developed an Application where I have given a Home page and other pages navigating from it. For the columns and headers and title and for other boxes to be filled, if given the lengthy text or the data. It comes out of the box if its bigger than the given size of the box. I have to add the ellipsis or truncate it. I don't know how to or where to add. Please help me with it.
asked
1 answers
1

So quick and dirty you could add this inline CSS styling to the text widget. Best practice is to create a class for it and add it to your design properties json.

text-overflow: ellipsis;

image.png

answered