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!

Dynamic Content Region with Image

sharatsinghOct 20 2023 — edited Oct 20 2023

Is there a way to display images (referring to the Static Application file) in Dynamic Region returning CLOB in Oracle Apex 22? I could return character-based text, but I am not able to use the <img> element in the report.

e.g.

DECLARE

l_result clob := ‘<div class="report-container">’;

BEGIN

l_result := l_result || '<img src="#APP_FILES#logo/company_logo.png">';

l_result := l_result || ‘</div>’;

return l_result;

END;

This post has been answered by fac586 on Oct 25 2023
Jump to Answer
Comments
Post Details
Added on Oct 20 2023
5 comments
1,610 views