3 Answers, 1 is accepted
We're not sure what exactly is your scenario. Do you have a custom EditAppointmentDIalog? Can you explain in more details?
Kind regards,
Yana
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Hello Yana,
Yes i do have a custom EditappointmentDialog,Its implemented as below
<ControlTemplate x:Key="EditAppointmentTemplate" TargetType="schedule:SchedulerDialog">
<MyViews:AppointmentSaveCW/>
</ControlTemplate>
<Style x:Key="EditAppointmentDialogStyle" TargetType="telerik:SchedulerDialog">
<Setter Property="Template" Value="{StaticResource EditAppointmentTemplate}" />
</Style>
I am using Custom Entity for binding appointments as well,which implements Telerik.Windows.Controls.ScheduleView.Appointment
In my custom entity there are two properties State & City which are of type List<string>.
I am binding the two properties to two ComboBoxes C1 & C2 in my Custom EditAppointmentDialog View
My scenario is like,
Combobox C2 must be populated on change of combobox C1.
How we can implement the same.
Best Regards,
Jovin
I've attached an example project which demonstrates how you can implement cascade comboboxes in a custom EditAppointmentDialog of the RadScheduleView. Basically we're changing the ViewModel of the dialog, so now you can access all the default properties from DialogViewModel property.
Please download the attachment and give it a try,
Kind regards,
Yana
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>