hi,
I have a problem in Radscheduler.i had implemented the calender view in radscheduler and create apponitments in that Calender.i just Want the Functianality like this When i m clicking the specified date ,just pass the same date to another aspx page.I had tried to do this using onclientTimeslotclick property of the Radscheduler and write one function using Javascript like this.
function OnClientTimeSlotClick(sender,eventArgs)
{
var newwindow = '';
var selectedDate =eventArgs.get_time().format('dd-MM-yyyy');
newwindow=window.open(
"LeaveApp.aspx?selectedDate="+selectedDate,'location=1,resizable=1');
}
i can pass the variable to the next page.But the problem here is i can access the Holiday also.If this problem can solve by any other property of Radscheuler or some direct script( or register Script in vb page).Please help me to solve this proble.
Thank You