Hello, I am a new developer in smartgwtee. I have been using spartgwt version for a few projects.Now I am developping application where I need axport to excel.
I have installed free trial version, to test excel export.
Now I have a test application with this part of code:
DSRequest dsr = new DSRequest();
dsr.setExportAs(ExportFormat.CSV);
dsr.setExportFilename("MyExport.csv");
dsr.setExportDelimiter(";");
dsr.setExportDisplay(ExportDisplay.DOWNLOAD);
lg1.exportData(dsr);
I know that I have a problem with web.xml. Could you send me an example of this file for export ?
THX
Michal Felgr
I have installed free trial version, to test excel export.
Now I have a test application with this part of code:
DSRequest dsr = new DSRequest();
dsr.setExportAs(ExportFormat.CSV);
dsr.setExportFilename("MyExport.csv");
dsr.setExportDelimiter(";");
dsr.setExportDisplay(ExportDisplay.DOWNLOAD);
lg1.exportData(dsr);
I know that I have a problem with web.xml. Could you send me an example of this file for export ?
THX
Michal Felgr
Comment