如何在有条件的情况下在Pentaho仪表板上插入图像?

时间:2019-08-27 15:45:13

标签: pentaho pentaho-cde

我知道如何使用add image上可用的Layout Panel或HTML插入图像。

但是我想做一个条件:如果该图像不可用或不存在,则有一个我要显示的默认图像。

所以我认为我需要使用js函数。 最好的方法是什么?

1 个答案:

答案 0 :(得分:1)

您可以为此使用html中的图片标签。

 <img id="img" src="SomeImage.jpg" onerror="this.onerror=null; this.src=default.png" alt="" width="100" height="120">