Hi Amar,
You can hook on the
AppointmentCreating event and set the Start and End time there:
private void AppointmentCreating(object sender, EventArgs e)
{
e.NewAppointment = new Appointment();
e.NewAppointment.Start = this.SelectedSlot.Start;
e.NewAppointment.End = e.NewAppointmen.Start.AddMinutes(30);
}
More about RadScheudler's events you can read
here.
Regards,
Rosi
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>