Sorry, this is not what i m looking for...i m not looking binding sql data with the Data Source Configuration Wizard, i m confusing in the how multi tier architecture work with telerik radscheduler, for example, if i create a DataLayer and Business Logic in my project, how to make them bind the data in the radscheduler key fields? i try to used this code:
DataSet dsAppointment = new DataSet();
RadScheduler1.DataSource = dsAppointment;
RadScheduler1.DataKeyField =
"Appt_ID";
RadScheduler1.DataSubjectField =
"Appt_Subject";
RadScheduler1.DataStartField =
"Start";
RadScheduler1.DataEndField =
"End";
RadScheduler1.DataBind();
in the defaultUI C# is no work n show error, what m i missing or misunderstanding?Thx.