This question is locked. New answers and comments are not allowed.
Hi Telerik,
i need my own Edit Appointment Event. A popup Window is not a option.
So i change the EditAppointment Style
Now no appointments are displayed the scheduler is empty. I don't get an error?.
greets
jürgen
i need my own Edit Appointment Event. A popup Window is not a option.
So i change the EditAppointment Style
<ControlTemplate TargetType="telerik:ChromeControl"> <Grid> <telerik:CommandManager.InputBindings> <telerik:InputBindingCollection> <telerik:MouseBinding Command="local:MyCommands.Copy" Gesture="LeftDoubleClick"/> <!-- <telerik:MouseBinding Command="telerikScheduler:RadSchedulerCommands.EditAppointment" Gesture="LeftDoubleClick"/>--> </telerik:InputBindingCollection> </telerik:CommandManager.InputBindings>
public static class MyCommands { public static readonly RoutedCommand EditMe = new RoutedUICommand("EditData", "EditMyData", typeof(MyCommands)); public static void EditMyData(object sender, ExecutedRoutedEventArgs e) { MessageBox.Show("Edit"); } }
Now no appointments are displayed the scheduler is empty. I don't get an error?.
greets
jürgen