I am really new with Apex, and I got this situation, I have uploaded 10 png files to "static application files" section of my application. I have a query something like this select name, imageName,phoneNumber from myTable
the imageName field, holds the name of the static file loaded before.
My problema is, how can I show the image in the listview? I cant find a way
I am using "Application Express 18.1.0.00.45"
I've try this way:
select name,
'<img src="#APP_IMAGES#' || imageName ||'.png" alt="image">' as imagenName , phoneNumber from myTable
This way too
select name,
'"#APP_IMAGES#' || imagenName ||'.png"' imagenName ,phoneNumber from myTable
none of those options work.
any help Will be great