How to use an icon in the formula for a Text List object (TLO) using the Rich Text option? I’d like to have an icon that I could click on each row of the TLO. When reading the documentation and perusing the Text Objects / Text Display & Editing video, it took me a while to realize that using arraybuild( to create an array to populate a TLO, was the correct place to put a reference to an icon. That icon would appear on each row of the TLO.
The general approach …
TLO_formula_variable = arraybuild(cr(), “DB_Name”, {Field_0 + tab() + Field_1 + tab() + Field_2 + tab() + Field_3 + tab() + “
<char:0xf040:FontAwesome:13:0400FF>
”}, {an_appropriate_DB_query})
The Rich Text setting needs to be checked in the TLO’s options pane.
This may be useful to other users.