7
Views
3
Comments
Solved
[OutSystems Data Grid Sample] Symbols Available for Conditional Formatting in DataGrid
outsystems-data-grid-sample
Reactive icon
Forge asset by OutSystems
Application Type
Reactive

I would like to use conditional formatting with symbols, just like in the sample.

However, while I can see the code representing the three symbols in the sample, I don't know what other symbols are available since there is no other sample information.

Is there a list or reference that compiles the available symbols?


2022-11-12 11-28-30
Gonçalo Martins
Staff
Solution

Hello @Aichan 

The symbols are not related to Data Grid; they are the icon code for a Unicode emoji (check here) you can use in your app. 

The important part is that you create the CSS class (that, in this case, will contain an icon using the content CSS property) as you would create one on any HTML element.

Best Regards,
GM

2026-02-26 06-29-24
Rahul
 
MVP

Hi,
You can see here list of symbols-
🔗 https://unicode.org/emoji/charts/full-emoji-list.html
🔗https://www.fileformat.info/info/unicode/category/So/list.htm 

You must use a font that supports emoji, like: 

font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;

Regards

Rahul

UserImage.jpg
Aichan

@Rahul Sahu san

Thank you.

Can the symbols on the URL you provided be used for commercial purposes?

2022-11-12 11-28-30
Gonçalo Martins
Staff
Solution

Hello @Aichan 

The symbols are not related to Data Grid; they are the icon code for a Unicode emoji (check here) you can use in your app. 

The important part is that you create the CSS class (that, in this case, will contain an icon using the content CSS property) as you would create one on any HTML element.

Best Regards,
GM

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.