2017年3月18日 星期六

iReport parameter setting to remove nullpx when using exporting to HTML

Refer: http://stackoverflow.com/questions/11686332/nullpx-in-jasperreport-html-view

使用 iReport 時,若沒有特別設定,在使用匯出HTML時,預設可能會看到「X」的圖示:

image

若要關閉這個圖示,可在程式中設定如下:

JRHtmlExporter htmlExporter = new JRHtmlExporter();
htmlExporter.setParameter(JRHtmlExporterParameter.IS_USING_IMAGES_TO_ALIGN, Boolean.FALSE);

沒有留言: