tags:

views:

14

answers:

1

Does anybody know which date format is to be used, trying to create a plugin that generates a report that can be exported to excel or pdf.

A: 

I did this for the Timecharts plugin. Try something like this:

Date createdDate = new Date(); String created = ManagerFactory.getOutlookDateManager().getOutlookDate(applicationProperties.getDefaultLocale()).formateDateTimePicker(createdDate);

~Matt

mdoar
Thx for the hint.
zapping