APEX 5.1
I was wondering what was the syntax for imagevalue
- the name of image to be display on the list entry in the following SQL for a dynamic list? and can I access the font awesome icons?
the answer is YES
just use the file name e.g. fa-bar-chart ...easy...thought I share this as it's not documented anywhere
SELECT level, labelValue label,
[targetValue] target,
[is_current] is_current_list_entry,
[imageValue] image,
[imageAttributeValue] image_attribute,
[imageAltValue] image_alt_attribute,
[attribute1] attribute1,
[attribute2] attribute2,
[attribute3] attribute3,
[attribute4] attribute4,
[attribute5] attribute5,
[attribute6] attribute6,
[attribute7] attribute7,
[attribute8] attribute8,
[attribute9] attribute9,
[attribute10] attribute10
FROM ...
WHERE ...
ORDER BY ...
PaulP