Rich text (Latest V 3.2.3) content without the scroll bar

0
I am using Rich Text widget (recently upgraded to v3.2.3 ) with Mendix v9.24.23. I am not able to find the option how I can show long text without the scroll bar. Before the Rich Text widget upgrade, I had the option in it's properties config but in the latest widget I can't see it. Can anyone help me to display rich text in readonly view without scroll bar and show entire text.   This screen shot for reference.
asked
1 answers
1

I found a workaround for this use case and wants to shar with everyone.

I have used below steps and it worked for me.

  1. HTML Element market place module and configure it to show my HTML string dynamically.
  2. link to configuration doc  https://docs.mendix.com/appstore/widgets/htmlelement/
  3. It doesn't give scroll bar.
  4. wrapped it in container and given style to make border to separate with other widgets.

 

border style for container-

border-width: medium;

border-style: ridge;

padding: 8px;

 

Thank you.

answered