Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2015 06:02 AM
Something i found from Wiki. Please look into this it can help how to convert time zones
- 1. //converting GMT to Canada/Eastern
- 2.
- 3. var tz = Packages.java.util.TimeZone.getTimeZone("Canada/Eastern");
- 4. gDate.setTZ(tz);
...right after you initialize the variable and before you assign the date to it. You should end up with:
- 1. var gDate = Packages.com.glide.glideobject.GlideDateTime();
- 2. //converting GMT to Canada/Eastern
- 3.
- 4. var tz = Packages.java.util.TimeZone.getTimeZone("Canada/Eastern");
- 5. gDate.setTZ(tz);
- 6. gDate.setValue(msDate);