Would be nice if tooltips could have bold text! Pretty basic but useful feature. Makes it easier to scan and read important stuff in the tooltips.
Discussion posts and replies are publicly visible
Hi aminw4267 ,
It is not possible out of the box.
There is some workaround for this you can construct the tooltip text with unicode. we are using this in our project, and it is working fine.
source Stefan's Blog: https://appian.rocks/2023/04/17/formatting-labels-in-appian/
sample:
Thanks a lot Ranjith shanmugam :-)
My request is for tooltips / captions / mouseovers in general, be upgraded to accept the "a!richTextItem()" object instead of plaintext, though with some obvious caveats (probably can't support links or images, some things dumbed down perhaps, size limits - but otherwise, why not show the rich text item contents as-is?).
Yes, please!
Hi aminw4267
Can you try this logic may be it help.
a!localVariables( local!lRange: 120302 - 97, local!uRange: 120276 - 65, a!textField( label: "Phone Number", helpTooltip: joinarray( char( a!forEach( items: code("Bold Text for ToolTips"), expression: a!match( value: fv!item, whenTrue: and(fv!value > 96, fv!value < 123, ), then: fv!value + local!lRange, whenTrue: and(fv!value > 64, fv!value < 91, ), then: fv!value + local!uRange, default: fv!value ) ) ), "" ) ) )