Solved
Difference in time
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?
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?
Hi
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.