Hello, I'm a new outsystems developer.
Data is cut off as shown in this picture. Any workaround?
If there is a solution, please let me know in detail.
Hi @Woo sihyun ,Enclose the list with container and add the below style to the containermax-height: 400px;overflow: auto;You can check the demo hereOml is also attached for reference.RegardsKrishnanand Pathak
Thank you, it worked fine.
Glad I could Help :)
Hi @Woo sihyun, add overflow scroll, with a max height in the tooltip content, it will add a scroll. Read about the overflow property here: CSS Overflow.ThanksGitansh Anand
Because overflow is used, the width and height are broken. Can you tell me more?
Hi, use overflow-y; it will only add vertical scrolling; read about it here in CSS overflow-y Property, this will solve your width issue; and for height, as I said previously, use the max height property; read more about it here in CSS max-height Property.ThanksGitansh Anand