Hello, I am exporting the fields of a ListGrid with the following code:
But I am having problems with a date field. I get in the excel file:
10.09.2003 00:00:00
Is it possible to format that field to display only the date?
10.09.2003
Code:
DSRequest dsRequestProperties = new DSRequest(); dsRequestProperties.setExportAs((ExportFormat)EnumUtil.getEnum(ExportFormat.values(), "xls")); dsRequestProperties.setExportDisplay(ExportDisplay.DOWNLOAD); grid.exportData(dsRequestProperties);
10.09.2003 00:00:00
Is it possible to format that field to display only the date?
10.09.2003
Comment