Hi,
When I export data from the grid to Excel I'm getting +1hr timezone offsets on some dates, because of DST adjustments in the UK I'm guessing. The dates in my datasource don't have time offsets, so I think the grid (or maybe moment?) is introducing these? How can I turn that off and have the dates exported as they are shown in the grid without time offsets added?
Hi Nick! Is it possible that you share the a sample app reproducing the issue or more details around?For example - what timezone your machine is set to and a sample of the data coming from the server, along with the grid configuration and I will be glad to have a look at it.
So the 1st solution does not work. I've done this, dates still display correctly, exported dates are -5 hours off and incorrect. Is there a way to turn off UTC dates on the excel exporter?
Hello Redox,
As my example shows, creating a date on the server happens as:
ReleaseDate = new DateTime(2015, 1, 10, 7, 0, 0, 0) // 10.01.2015 07.00 AM
The Kind property, that indicates whether the time represented by this instance is based on local time, Coordinated Universal Time (UTC), or neither, is initialized to DateTimeKind.Unspecified by default. Before rendering the grid, its data is recreated on the client. When a new date is created in JavaScript it will always be created in local time, which is:
07:00 AM + 3:00 (if the timezone offset on the server is +3 hours) = 10:00 AM
This is the date the igGridExcelExporter works with and it will be exported to the Excel worksheet.
However, since enableUTCDates is true, that date is formatted to UTC (-3:00:00) for displaying in the igGrid:
07.00 AM
All of this is explained in more detail at https://www.igniteui.com/help/using-igniteui-controls-in-different-time-zones. Please let me know if you have further questions, I will be glad to help.
Hi Hristo
Sorry, I'm a bit confused, why is it introducing a difference? Is that because the server and client are in different timezones, or is there some other reason?
Thanks, Tom
Here is a sample demonstrating the last approach. Please let me know if you have further questions.