Hi,
I have an issue with RADScheduler.
When I click on any free time slot between today's date and 11/02/08 I could see the correct time displaying. But When I click on the time slots between 11/02/08 and 03/08/09 it automatically decrements time by 1 hr . Looks like it is automatically adjusting to daylight saving time. Example if I click on 7:00 it gives me 6:00. But we don't want that to happen because we want to schedule appointments at 7:00 but not at 6:00.
Please help me with this..
I am giving my sample javascript code here.
I have an issue with RADScheduler.
When I click on any free time slot between today's date and 11/02/08 I could see the correct time displaying. But When I click on the time slots between 11/02/08 and 03/08/09 it automatically decrements time by 1 hr . Looks like it is automatically adjusting to daylight saving time. Example if I click on 7:00 it gives me 6:00. But we don't want that to happen because we want to schedule appointments at 7:00 but not at 6:00.
Please help me with this..
I am giving my sample javascript code here.
function
OnClientTimeSlotClick(sender,eventArgs)
{
var now = new Date();
now=eventArgs.get_time();
alert(now);
}