This question is locked. New answers and comments are not allowed.
I've an problem with my MonthView. When I open / create an new Appointment on MonthView, it takes 2 days (startdate + 1) but i just want 1 day. On the WeekView i don't have this problem. But it doesn't work when i say in the View:
<telerik:MonthViewDefinition Title="Month" DayStartTime="00:00" DayEndTime="23:59" />Where can I set that it takes just 1 day.. ??
<telerik:RadScheduleView AppointmentDeleting="ScheduleViewBase_OnAppointmentDeleting" AppointmentStyleSelector="{StaticResource AppointmentStyleSelector}" AppointmentsSource="{Binding OrderAppointments}" CurrentDate="{Binding CurrentDate, Mode=TwoWay}" EditAppointmentDialogStyle="{StaticResource EditAppointmentDialogStyle}" FirstDayOfWeek="Monday" SelectedAppointment="{Binding SelectedOrder, Mode=TwoWay}" SpecialSlotStyleSelector="{StaticResource SpecialSlotStyleSelector}" SpecialSlotsSource="{Binding SpecialSlots, UpdateSourceTrigger=PropertyChanged}"> <telerik:RadScheduleView.ViewDefinitions> <telerik:WeekViewDefinition Title="Week" DayEndTime="23:59:59" DayStartTime="23:59:58" FirstDayOfWeek="Monday" ShowAllDayArea="True" ShowTimeRuler="False" ShowWeekGroupHeaders="True" VisibleDays="5" WeekGroupHeaderStringFormat="Week{0}" /> <telerik:MonthViewDefinition Title="Month" DayStartTime="00:00" DayEndTime="23:59" /> </telerik:RadScheduleView.ViewDefinitions></telerik:RadScheduleView>Regards,
Robi