Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hi Use event ShowDialog on the RadScheduleView-Control. And there you can do stuff like this:
if
(e.DialogViewModel
is
RecurrenceChoiceDialogViewModel)
{
as
RecurrenceChoiceDialogViewModel).IsSeriesModeSelected =
true
;
(((RecurrenceChoiceDialogViewModel)e.DialogViewModel).RecurrenceChoiceDialogMode ==
RecurrenceChoiceDialogMode.Opening ||
((RecurrenceChoiceDialogViewModel)e.DialogViewModel).RecurrenceChoiceDialogMode ==
RecurrenceChoiceDialogMode.Resizing)
e.DefaultDialogResult =
e.Cancel =
}
In this example i say always change the series and do not show the user the dialog. Annett