Hello,
I have a DateRangePicker inside an EditTemplate in GridColumn that connects with an API via ODATA v4. I noticed strange date changes whenever I saved my info (without change the date range) so I configured an OnActionBegin function to log the dates on save. In order to compare what is the json sent to the API, I'm using the app "Fiddler Everywhere".
Here is the issue. OnActionBegin handler variables have:
FirstDay: 1/1/2019 0:00:00
LastDay: 31/3/2019 0:00:00
But the Grid is sending this to the API:
FirstDay: "2018-12-31T12:00:00-06:00"
LastDay: "2019-03-30T12:00:00-06:00"
I'm using Syncfusion Blazor 18.1.0.59. My timezone is GMT-6.
What kind of DateTime manipulation does the Grid component do? Am I missing something?
Thanks,
Erick