I am using a telerik RadScheduleView
control to display employee records
I have also added custom column names Employee name,start date,end date.
Please help me on how to fetch data from the database and display it on the RadScheduleView
control.
I am new to Telerik control.
Asked
Active
Viewed 726 times
0

Tony L.
- 17,638
- 8
- 69
- 66

user2022468
- 5
- 8
-
Can you share what you've done so far? Have you read the [telerik documentation on data binding](http://www.telerik.com/help/wpf/radscheduleview-populating-with-data-binding-to-db-overview.html)? I also do not recall why you refer to columns when using a `RadScheduleView`... Do you mean `RadGridView`? – Sjeijoet Oct 29 '14 at 12:08
-
I am using RadSchedule view which looks like outlook. I want to display the records in the RadSchedule view control – user2022468 Oct 29 '14 at 12:14
-
I see what you mean, you've create a table `Employee` with the columns Name, StartDate and EndDate. Right? And now you wish to display the employees in the control based on their StartDate and EndDate? – Sjeijoet Oct 29 '14 at 12:30
-
Yes hanton exactly..Could you please suggest me how to bind the data to the control. – user2022468 Oct 29 '14 at 12:47
1 Answers
0
In order to display Employees
in the RadScheduleView
you need to bind the AppointmentSource
to a model representation (Employee
) of the data from your database. Your model representation must implement IAppointment
:
I suppose you only require the End
(Employee.EndDate
), Start
(Employee.StartDate
) and Subject
(Employee.Name
) members for now.
That is as far as I can help you start off. More information on Telerik RadScheduleView
database binding can be found in the following articles:
- Overview
- RadScheduleView Types and Sources
- Table Definitions and Relationships
- List item
- Models
- View and ViewModel
They even have a sample project for you: http://www.telerik.com/support/code-library/binding-to-database-example

Sjeijoet
- 741
- 4
- 20