1

telerikスケジューラーの予定のカスタム追加ページを作成しようとしています。スケジューラーに組み込まれている予定の追加テンプレートではなく、自分のページを表示したい。Advanced Insert Templateを見ましたが、カスタムページにリダイレクトできないと思います。

4

1 に答える 1

0

これは私がWPFで使用しているものです-Silverlightを使用していると仮定してYMMV:

//in your window's constructor, add:

Sched.AddHandler(AppointmentItemsControl.SelectionChangedEvent, new SelectionChangedEventHandler(ShowCustomApptForm), true); 


//then handle the event like this:
        public void ShowCustomApptForm(object sender, SelectionChangedEventArgs args)
        {
            if (args.AddedItems.Count > 0)
            {
                AppointmentSlot item = args.AddedItems[args.AddedItems.Count - 1] as AppointmentSlot;
                if (item != null)
                {
                    //Get the appointment object so we can access the UniqueID    
                    Appointment SelAppt = (Appointment)item.Occurrence.Master;
                    //Open the custom form, passing the uniqueid to the constructor
                    MyCustomForm ApptFrm = new MyCustomForm(Convert.ToInt32(SelAppt.UniqueId));
                    ApptFrm.Show();

                }
            }

        }
于 2011-03-17T02:33:59.300 に答える