November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
You can write your own exporter and register with the system by:
[ServiceConfiguration(ServiceType = typeof(DataExporterBase))]
Example, if you want to export as CSV with local time, you should inherit the class CSVDataExporter then override the method [Export]. In there you will have a DataTable which contains all exporting submissions, just modify the field [Time] for converting it to local one. Then you call the base for doing rest of export process.
Hi Dac,
could you please explain a bit further. If I get it correctly I should implement what you told like so?:
[ServiceConfiguration(ServiceType = typeof(DataExporterBase))]
public class CustomCSVDataExporter : CSVDataExporter
{
public override string Export(DataTable dataTable)
{
... do custom stuff with dataTable ...
return base.Export(dataTable);
}
}
But this generates me 2nd "Export as CSV" dropdown option as well as this being called when Exporting CSV through 1st and newly generated 2nd option...
Hey here,
Does anyone konw how to export submissions of Episerver Form with local timestamp instead of UTC time? There is column "Time" in a form's submissions. I can see it's local date/time. However, if I export these submissions to csv, json, or xml, all date/time value are UTC date/time.
Would it possible to configure the Epiform to update it?
Thanks in advance
Bill