APEX 18.2
If I have a editable interactive grid with a Display Only, Query Only column containing Y/N/null values, how can I show a Font APEX icon as the display value in the grid but still allow column filtering on the actual values. I tried all sorts of things
- Use column type HTML Expression and put <span class="fa fa-whatever"></span>
- Use column type Display Only and use a List Of Values with Display = <span class="fa fa-whatever"></span> and return of Y/N
- Use column type Select List and use a List Of Values with Display = <span class="fa fa-whatever"></span> and return of Y/N
None of these quite do what I am looking for.
What am I missing? Thanks