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

Image in Appointment

3 Answers 194 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Pratik
Top achievements
Rank 1
Pratik asked on 01 Dec 2009, 11:57 AM
HI,

I have two questions:

1. I want to change background color of appointment. You have implemented enumeration for background colors. I want appointment background color as per my appointment's time slot. So I want to use my own background colors in appointment, can I..??

2. I want to place image in appointment. Sample snapshot I am posting which I implemented in Telerik's WPF scheduler. Can I have similar kind of facility of placing image in appointment, Or any way by which I can create template for appointment..??

Thanks in advance.

3 Answers, 1 is accepted

Sort by
0
Accepted
Boyko Markov
Telerik team
answered on 03 Dec 2009, 11:43 AM
Hi Pratik,

1. You can use the following code snippet to change the fill colors of your appointments:

AppointmentBackgroundInfo info = new AppointmentBackgroundInfo(1, this.radScheduler.Backgrounds[1].DisplayName, Color.Aquamarine, Color.Aqua);
            this.radScheduler.Backgrounds.RemoveAt(0);
            this.radScheduler.Backgrounds.Insert(0, info);
    
            foreach (Appointment currentAppointment in this.radScheduler.Appointments)
            {
                currentAppointment.BackgroundId = info.Id;
            }

2. RadScheduler for Winforms currently does not support this feature. We will do our best to improve the appointment UI customization in the next major release.

Please contact us again if you need more information.

Best wishes,
Boyko Markov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Alex
Top achievements
Rank 1
answered on 03 Mar 2010, 10:07 PM
Is the appointment UI customization implemented yet?

I need to have image in appointment too. I need it in the RadScheduler as well as in AppointmentEditDialog
0
Boyko Markov
Telerik team
answered on 09 Mar 2010, 02:20 PM
Hello Alex,

Thank you for contacting us. This feature is not supported in RadScheduler yet. We will do our best to implement it in Q2. If you need more information, feel free to write us back.

Sincerely yours,
Boyko Markov
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 and Reminder
Asked by
Pratik
Top achievements
Rank 1
Answers by
Boyko Markov
Telerik team
Alex
Top achievements
Rank 1
Share this question
or