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;