1

仅当我在列中有 null 时,如何有条件地显示特定图标(例如“添加数据”)。

在此处输入图像描述

4

2 回答 2

2

你可以这样做:

case when name is not null
  then name
  else '<img src="myicon.png"/>'
  end as name

您需要将列的显示为属性更改为“标准报告列”,以便 APEX 不会转义此 HTML。

如果您打算将此图标作为链接,则可以以相同的方式执行此操作:

case when name is not null
  then name
  else '<a href="..."><img src="myicon.png"/></a>'
  end as name
于 2016-08-15T11:39:42.610 回答
1

如果您想为任何列中的每个空单元格显示相同的图标,您只需将适当的 html 代码添加到报告的属性设置中:

Your_Report → Attributes → Show Null Values as → <img src="image.png">
于 2016-08-15T12:26:58.787 回答