This is a migrated thread and some comments may be shown as answers.

How to Remove Icon in the Rad shedule

1 Answer 39 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
charith
Top achievements
Rank 1
charith asked on 24 Sep 2010, 02:33 AM
How To Remove the Icon in the Rad Sheduler and Different Icons for Different Events....

example
Attached

I used this method to coloured the Appoinments

 

 

 

 

If Trim(e.Appointment.RecurrenceParentID) = "E" Then

 

 

 

For i = 0 To reccount - 1

 

 

 

If RadScheduler1.Appointments(i).Subject = e.Appointment.Subject Then

 

RadScheduler1.Appointments.Item(i).BackColor = Drawing.

 

Color.Orange

 

 

 

Exit For

 

 

 

End If

 

 

 

Next

 

 

 

End If

 

 

 

'Display Work Order in Differnt colour

 

 

 

If Trim(e.Appointment.RecurrenceParentID) = "W" Then

 

 

 

For i = 0 To reccount - 1

 

 

 

If RadScheduler1.Appointments(i).Subject = e.Appointment.Subject Then

 

RadScheduler1.Appointments.Item(i).BackColor = Drawing.

 

Color.YellowGreen

 

 

 

Exit For

 

 

 

End If

 

 

 

Next

 

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 28 Sep 2010, 02:25 PM
Hello charith,

This is the recurrence exception icon and you can hide it with the following css:
.rsAptRecurrenceException
  {
      visibility:hidden !important;
  }


Kind regards,
Peter
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Scheduler
Asked by
charith
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or