This question is locked. New answers and comments are not allowed.
Hello,
I have appointment with different category now i want to set background of Subject box based on category and i have it working in Rad Scheduler Control in Production system but now i want to achieve same thing in ScheduleView how can i do that .
Please find attachment of screenshot of Radscheduler application and i tool idea from first look of your radScheduler Control.
in my case ScheduleView control bound to data coming from WCF service.This is what i did in RadScheduler control in order to get category.
how can i do achieve same thing in ScheduleView control and i already have category Collection define in ScheduleView control its hardCoded not binding to any VM.
Thanks
Ronak
I have appointment with different category now i want to set background of Subject box based on category and i have it working in Rad Scheduler Control in Production system but now i want to achieve same thing in ScheduleView how can i do that .
Please find attachment of screenshot of Radscheduler application and i tool idea from first look of your radScheduler Control.
in my case ScheduleView control bound to data coming from WCF service.This is what i did in RadScheduler control in order to get category.
public AppointmentViewModel(PublicEvent appointment, RadScheduler_scheduler) { this.UniqueId = appointment.UniqueId; this.Subject = appointment.Subject; this.Start = appointment.Start; this.End = appointment.End; this.Body = appointment.Body; this.IsAllDayEvent = appointment.IsAllDayEvent; this.Location = appointment.Location; this.Category = _scheduler.Categories.GetCategoryByName(appointment.Category); }how can i do achieve same thing in ScheduleView control and i already have category Collection define in ScheduleView control its hardCoded not binding to any VM.
Thanks
Ronak