Hi All
When you Seletced a Appt the slot under this appt is not be selected.That`s mean when you using CopyPaste if there are Appt(s) on a slot ,you can`t paste again.But DragDrop are woking if there are Appt(s) on a slot,you can drop again.
Thanks
When you Seletced a Appt the slot under this appt is not be selected.That`s mean when you using CopyPaste if there are Appt(s) on a slot ,you can`t paste again.But DragDrop are woking if there are Appt(s) on a slot,you can drop again.
Thanks
3 Answers, 1 is accepted
0
Hi,
RadScheduleView is designed to unselect an Appointment when a Slot is selected and vice versa.
To give you more detailed instructions how to solve the described issue I need more information. That is why I suggest you send us sample running project and a short movie illustrating the problem and we will send you more detailed information and/or a solution.
Regards,
Rosi
Telerik
RadScheduleView is designed to unselect an Appointment when a Slot is selected and vice versa.
To give you more detailed instructions how to solve the described issue I need more information. That is why I suggest you send us sample running project and a short movie illustrating the problem and we will send you more detailed information and/or a solution.
Regards,
Rosi
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WPF.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
0

Wenjie
Top achievements
Rank 1
answered on 24 Jul 2013, 02:12 PM
Hi Rosi,
Thanks.
i am using this sample "http://www.telerik.com/community/forums/wpf/scheduleview/copy-paste-appointment-by-ctrl-c-ctrl-v-or-contextmenu.aspx"
First creat 2 Appts,than copy one of them to another one.
Thanks.
i am using this sample "http://www.telerik.com/community/forums/wpf/scheduleview/copy-paste-appointment-by-ctrl-c-ctrl-v-or-contextmenu.aspx"
First creat 2 Appts,than copy one of them to another one.
0
Hello,
I suggest you modify the CanExecutePaste method so the Paste button will be disabled when there aren't a selected slot.
Regards,
Rosi
Telerik
I suggest you modify the CanExecutePaste method so the Paste button will be disabled when there aren't a selected slot.
private
bool
CanExecutePaste(
object
parameter)
{
return
parameter!=
null
&& cutAppointments.Count > 0;
}
Regards,
Rosi
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WPF.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>