Hi! I have a field of the DateTime type in the Grid, where the time is +4 compared to mine. How can I remove this difference?
Solved! Go to Solution.
Hi @Mr_Henry_M,
You can refer to below js code:
//convert date to ms in my time zone
var myTime = Date.parse(originalDate) - 4*60*60*1000;
//convert ms to date
var newDate = new Date(myTime);
Then you can use the new date parameter in your service
Thanks,
/Yoyo
Hi @Mr_Henry_M,
You can refer to below js code:
//convert date to ms in my time zone
var myTime = Date.parse(originalDate) - 4*60*60*1000;
//convert ms to date
var newDate = new Date(myTime);
Then you can use the new date parameter in your service
Thanks,
/Yoyo
Thanks a lot!