Datatable Export to png all rows

Hi
I understand that the export to pdf is deprecated.
When I export a datatable to png, only the visible entries are exported. How to export the whole datatable to png if the row number exceeds the actual screen size?

Thanks,
Martin

Hi,

Export to PDF is not going to disappear at all. We only remove serverside export (implemented with the exportToPDF method of the DataTable/TreeTable) from the library package. The functionality will still be accessible on GitHub as an extension.

Moreover, in the next update we plan to include the webix.ToPDF() method similar to the existing .toPNG() and .toExcel().

How to export the whole datatable to png

You can use something like

grid.config.autoheight = true;
grid.resize();
webix.toPNG(grid);
grid.config.autoheight = false;
grid.resize();