Display wrong when save to HTML

Workbook wb = new Workbook("C:/HideRows.xlsx");
wb.save("C:/HideRows.html");

Hi,


Thank you for contacting Aspose support.

I have evaluated your presented scenario while using the latest revision of Aspose.Cells for Java 8.6.3.6, and I am able to observe the problem in resultant HTML. Please note, I have tried two approaches to evaluate the case where none generated the correct output. I have logged this incident as CELLSJAVA-41710 in our bug tracking system for further investigation. Please spare us little time for proper analysis, in the meanwhile, we will keep you posted with updates in this regard.

Java

Workbook wb = new Workbook(dir + “HideRows.xlsx”);
HtmlSaveOptions options = new HtmlSaveOptions();
options.setHiddenRowDisplayType(HtmlHiddenRowDisplayType.REMOVE);
wb.save(dir + “HideRows(hiddenRowsRemoved).html”, options);

Workbook wb = new Workbook(dir + “HideRows.xlsx”);
wb.save(dir + “HideRows(direct).html”);

@xhaixia,
This is to inform you that we have fixed your issue now. We will soon provide you the fixed version after performing QA and incorporating other enhancements and fixes.

The issues you have found earlier (filed as CELLSJAVA-41710) have been fixed in this update. This message was posted using Bugs notification tool by johnson.shi