Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
245
Color coding recurring appointments
posted

Hi guys,

         I've been dealing this issue for some time now and decided to have another stab at it. I can color code appointments in WebDayView using the following code:

protected void WebScheduleInfo1_DataBinding(object sender, System.EventArgs e)
{
    Appointment cApp;
    foreach ( cApp in WebScheduleInfo1.Appointments) {
        cApp.Style.CustomRules = "background-color:red; border: solid 1px; black;";
    }
   
}

The problem is its not working when an appointment is a recurring one. Please help me Infragistics!!  

Thanks