Hi
I want to use the power of the TimeZoneOffset property on the radscheduler.
I have looked at the examples in the online demos and the programming pages and the example given shows a radscheduler with a dropdown populated with GMT +1 +2 etc etc.
Changing the value in the dropdown causes an ajax postback to get the new appointment items adjusted to the localized times.
My need is much simpler nut I can't quite seem to get it to work. I don't want the dropdown for the user. All I need is that if say a user puts in say a telephone conference at 18:00 uk time when a user in New York looks at the scheduler it shows it at 13:00. So all the code would seem to have to do somewhere once it has detected it's a request from a New york user is something like this.
I want to use the power of the TimeZoneOffset property on the radscheduler.
I have looked at the examples in the online demos and the programming pages and the example given shows a radscheduler with a dropdown populated with GMT +1 +2 etc etc.
Changing the value in the dropdown causes an ajax postback to get the new appointment items adjusted to the localized times.
My need is much simpler nut I can't quite seem to get it to work. I don't want the dropdown for the user. All I need is that if say a user puts in say a telephone conference at 18:00 uk time when a user in New York looks at the scheduler it shows it at 13:00. So all the code would seem to have to do somewhere once it has detected it's a request from a New york user is something like this.
int
hoursOffset = -5;
RadScheduler1.TimeZoneOffset = TimeSpan.Parse(hoursOffset.ToString());
Is this correct and where do I put such code? I've tried it on a little test project in onload but it doesn't seem to have any effect on the appointment times.
Thanks
Gary