Is there anyway to turn OFF the timezone conversion that happens when you have a data source with DateTimeFields? I'm handling the timezone conversion in my own code (long story as to why I need to do it this way) so I really need to get the plain vanilla date that is being sent from my server.
For example my data source has fields like this:
I tried using the DateUtil.setDefaultDisplayTimezone("00:00"); method but it does not seem to have any effect.
Thanks,
Chris
For example my data source has fields like this:
Code:
DataSourceDateTimeField startField = new DataSourceDateTimeField("starttime"); DataSourceDateTimeField endField = new DataSourceDateTimeField("endtime");
Thanks,
Chris
Comment