I'm using the released SmartGWT 2.5.
It appears the Calendar widget displays times in Local time. The SmartGWT server code is returning dates in UTC, but the calendar is showing those dates with the local timezone adjustment. I have set the client to
but this seems to have no effect on the Calendar. My ListGrid datetimes are all fine.
It appears the Calendar widget displays times in Local time. The SmartGWT server code is returning dates in UTC, but the calendar is showing those dates with the local timezone adjustment. I have set the client to
Code:
DateUtil.setDefaultDisplayTimezone("+0:00"); DateUtil.setAdjustForDST(false);
Comment