Hi Arpan,
Greetings from Syncfusion Support.
To overcome the reported “Time Zone” issue, we recommend that you use ej.serverTimezoneOffset property. Refer to the below code example,
<script type="text/javascript">
. . .
var serverTimeZoneDiff = -5.0 // if your server is in EST time zone (UTC -5.0) (in hours)
var clientSideTimeZoneDiff = new Date().getTimezoneOffset() / 60; // get client time zone difference and convert it to hours;
ej.serverTimezoneOffset = serverTimeZoneDiff + clientSideTimeZoneDiff;
. . .
</script> |
Also, refer the below help documentation link.
After referred the above solution, still facing an issue. Please come back to us, with the below details.
- Share the complete grid code example (both client and server end)
- Share the screenshot Or video demonstration of the issue.
Provided details, will help us to resolve the reported issue as early as possible.
Regards,
Manivannan Padmanaban