Hi all,
I want to customize my scheduler, so that the empty time slot will be colored as well.
Currently I can only color the time slot that has been booked for an appointment.
through this code
but this code only applies for the time slot that already attached to an appointment, so does anybody know how do i change the time slot color for the time slot that is not attached to an appointment?
I want to customize my scheduler, so that the empty time slot will be colored as well.
Currently I can only color the time slot that has been booked for an appointment.
through this code
Protected Sub RadScheduler1_AppointmentCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.AppointmentCreatedEventArgs) Handles EquipmentScheduler.AppointmentCreated |
If e.Appointment.Attributes("ForceSaving") = "0" Then |
e.Appointment.BackColor = Drawing.Color.Red |
Else |
e.Appointment.BackColor = Drawing.Color.Orange |
Sub |
but this code only applies for the time slot that already attached to an appointment, so does anybody know how do i change the time slot color for the time slot that is not attached to an appointment?