i using dynamics crm 2011 , i've date of contract field in contacts format of date only. now, want each user see same date apart time zone. far, setting same time zone each user , adding offset of 12 hours date tried not considered best solution.
any suggestion highly appreciated.
you can use following js calculate utc time:
var crdate = new date(); var offset = crdate.gettimezoneoffset() / 60; crdate.sethours(crdate.gethours() + offset); alert(crdate);
the following link has few more solutions
Comments
Post a Comment