Hello,
I have a cube grid with multiple facet header rows on the top. These are not being exported into the .CSV. Do you know how to enable it to export these headings along with the values as well?
The export code is simply:
Thank you.
See screenshot of the issue (please ignore blacked-out areas):
I have a cube grid with multiple facet header rows on the top. These are not being exported into the .CSV. Do you know how to enable it to export these headings along with the values as well?
The export code is simply:
Code:
exportButton.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event) { DSRequest dsRequestProperties = new DSRequest(); dsRequestProperties.setExportAs(ExportFormat.CSV); dsRequestProperties.setExportDisplay(ExportDisplay.DOWNLOAD); getTkrCubeGrid().exportClientData(dsRequestProperties); } });
Thank you.
See screenshot of the issue (please ignore blacked-out areas):
Comment