如何在材料顶点卡中使用HTML标签?

时间:2018-01-12 21:49:26

标签: html oracle-apex-5.1

我有这个问题,我需要在我的材料顶点卡代码中使用HTML代码,但我找不到使用HTML来显示更好的文本结构的方法。

目前我有一个类型为经典报告的区域,包含此SQL代码:

select '#APP_IMAGES#counter.png' img_src
,'Counter' title
, 'This element is conformated by 3 sections: <ul><li>Prueba</li></ul> ' content
,' ' btn_label_1
,' ' btn_label_2
from dual

正如您所看到的,我的内容列包含一些HTML代码,但这是以简单文本呈现,而不是由Web浏览器解释。

有没有办法存档我的需求?

1 个答案:

答案 0 :(得分:1)

略微修改您的查询(请注意 IMG 标记):

select '<img src="#APP_IMAGES#counter.png" </img>' img_src
  ,'Counter' title
  , 'This element is conformated by 3 sections: <ul><li>Prueba</li></ul> ' content
  ,' ' btn_label_1
  ,' ' btn_label_2
from dual

和一些IMG_SRC和CONTENT列调整 - 打开它们的属性,向下滚动,你会看到转义特殊字符 - 将其设置为NO。

应该这样做。