Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Syntax for including an icon as well as a label in an SQL dynamic list

PPlattApr 6 2017 — edited Apr 6 2017

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

This post has been answered by PPlatt on Apr 6 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 4 2017
Added on Apr 6 2017
1 comment
440 views