Joe Buckle
Top achievements
Rank 1
Joe Buckle
asked on 19 Dec 2009, 03:23 PM
Good day!
I'm trying to follow the online demos on a current project using the RadScheduler, but it seems that the Description field for the Appointment is missing. Was it removed on purpose on the latest version of the RadControls?
Thank you very much.
I'm trying to follow the online demos on a current project using the RadScheduler, but it seems that the Description field for the Appointment is missing. Was it removed on purpose on the latest version of the RadControls?
Thank you very much.
6 Answers, 1 is accepted
0
Hi Joe Buckle,
Not, it is not removed. You can find it working on our online demos. Please make sure that you use at least the Q3 2009 version.
Best wishes,
Veselin Vasilev
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.
Not, it is not removed. You can find it working on our online demos. Please make sure that you use at least the Q3 2009 version.
Best wishes,
Veselin Vasilev
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
Joe Buckle
Top achievements
Rank 1
answered on 22 Dec 2009, 09:23 AM
Thank you very much. The property is now visible. But I tried to set the DataDescriptionField="Description", which maps to a Description property of my custom Appointment class/object. After binding a list of my custom Appointment class/objects to the scheduler, the description doesn't show on the appointment in the UI, only the subject.
Thanks.
Thanks.
0
Hi Joe Buckle,
Do you mean that the Description input field is not shown in the Advanced Form or the text of the description is not pre-filled? Can you attach a screenshot please?
Regards,
Veskoni
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.
Do you mean that the Description input field is not shown in the Advanced Form or the text of the description is not pre-filled? Can you attach a screenshot please?
Regards,
Veskoni
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
Joe Buckle
Top achievements
Rank 1
answered on 22 Dec 2009, 03:17 PM
Good day!
The Description is not appearing on the appointment on the scheduler. I also tried to modify the sample (Binding to Generic List) that comes with the installer by setting the DataDescriptionField and even the EnableDescriptionField, but it also doesn't work. I have attached a screenshot.
Thanks.
The Description is not appearing on the appointment on the scheduler. I also tried to modify the sample (Binding to Generic List) that comes with the installer by setting the DataDescriptionField and even the EnableDescriptionField, but it also doesn't work. I have attached a screenshot.
Thanks.
0
Hello Joe Buckle,
The Description field appears by default only in the Advanced Form (when you edit/insert appointment with Advanced form). If you want to show it in that view - you need to use AppointmentTemplate:
You can see a running example here (just add a description to any of the apppointments)
Greetings,
Veskoni
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.
The Description field appears by default only in the Advanced Form (when you edit/insert appointment with Advanced form). If you want to show it in that view - you need to use AppointmentTemplate:
<AppointmentTemplate> <div class="rsAptSubject"> <%# Eval("Subject") %> </div> <%# Eval("Description") %></AppointmentTemplate>You can see a running example here (just add a description to any of the apppointments)
Greetings,
Veskoni
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
Joe Buckle
Top achievements
Rank 1
answered on 24 Dec 2009, 08:40 AM
Thank you very much. This worked ok!