Hi All,
In Apex 20.1
I would like to display an apex icon in a report column with a link
This is the query:
select
f.factura_id,
f.factura,
f.fecha,
f.efectiva,
f.tipo_factura,
nvl(f.prima,0.00) as prima,
nvl(f.balance_prima,0.00) as balance_prima,
nvl(f.balance_comision,0.00) as balance_comision,
nvl2(f.notas,substr(f.notas,1,50),'Añadir nota') as notas,
'fa-flag-o' as flag,
'Pay' as payment,
NULL ICON
from risk_facturas f
where f.poliza_id = :P38_POLIZA_ID
and f.organizacion_id = :APP_GET_ORGANIZACION_ID
I would like to display the fa-flag icon in a column having a link when pressing the icon.
Now it just show 'fa-flag' in the column. Not the icon.
How can I do that?
Thanks for the help!!