This question is locked. New answers and comments are not allowed.
Hi
i checked this explanation from docomuntation abount how to bind appiintments to scheduleview
now from code i created appointments but appointments does not exsit
Appointment appointment = new Appointment
{
Start = item.scheduledstart.Value
,End = item.scheduledend.Value
,Subject = item.subject
,Body = item.description
,Url = string.Format("{0}id={1}", BaseAppontmetUrl, item.activityid.ToString())
};
Appointmens -- this return compilation error
can you send me full example (maybe zip project) of binding appoitments?
i checked this explanation from docomuntation abount how to bind appiintments to scheduleview
<telerik:RadScheduleView AppointmentsSource="{Binding Appointments}"> <telerik:RadScheduleView.ViewDefinitions> <telerik:DayViewDefinition /> <telerik:MonthViewDefinition /> </telerik:RadScheduleView.ViewDefinitions> </telerik:RadScheduleView>
now from code i created appointments but appointments does not exsit
Appointment appointment = new Appointment
{
Start = item.scheduledstart.Value
,End = item.scheduledend.Value
,Subject = item.subject
,Body = item.description
,Url = string.Format("{0}id={1}", BaseAppontmetUrl, item.activityid.ToString())
};
Appointmens -- this return compilation error
can you send me full example (maybe zip project) of binding appoitments?