Open GoogleCodeExporter opened 8 years ago
The style attributes are only applicable for rendering html.
If you want to tweak out the export what you would do is create a custom view.
What I would do is copy the export view that you are interested in (either
ExcelView or JExcelView) into your project and then tweak it however you need.
Then set the view on your TableModel.
API:
if (tableModel.isExporting() &&
tableModel.getExportType().equals(ExportType.EXCEL)) {
tableModel.setView(new CustomExcelView());
}
Original comment by jeff.johnston.mn@gmail.com
on 26 Apr 2012 at 8:30
Original issue reported on code.google.com by
sumitra...@gmail.com
on 25 Apr 2012 at 6:24