I have a long text in a table within one column, and I don't want to display the full text
How do I display full text in a table? Any ideas?
Hi @gopal ks ,
There are several approaches to address this issue. Here is a list of options:
I hope this helps. If you have any further concerns or questions, please let me know.Thanks
Hi Gopal,
You can make use of text ellipsis, which is present in Outsystems UI -> Utilities -> Text ellipsis.
Regards,
Mayur
Hi gopal
Your Requirements Not clear, I understand that you need to show only a limited text others should be hided, you can show that with tooltip With Substring function in a table column expression you can achive that, for example, if (Length(value) > 10, Substr(value, 0, 10), value), to reduce the length of the value, drag and drop the if condition to check if the length of the value is greater than 10. (max charters you can choose)
If true, it means drag and drop the tooltip inside the content, give the expression as "..." and assign the value to tooltip.
If false, show nothing.
Click This to Check
refer oml
Hi @gopal ks,
As per my understanding, you want to display the full text in that particular column. If its true, just add the CSS "word-break: break-word;" on the container of the text.
Hope this helps!
Thanks