Is there a way to use a text widget and output static and dynamic text via params, but apply styles to the dynamic text like bolding or conditional colors?

0
I can apply a style the whole text object but was trying to apply inline styles. Example:  Your sales for today were $10,000  The number comes from a param  
asked
1 answers
1

The easy way is to have two text widgets below each other, with render mode 'Text'. The latter you give some styling (font-weight: bold, or add class text-bold (if available)).

Another way could be to use a appstore widget that renders a piece of variable html, like Format String: https://appstore.home.mendix.com/link/app/264/

answered