Add the possibility to have multiple time intervals for a working range and to have separate working ranges for different resources.
IMPORVE. RadScheduler - improve the selection of the cells into RadScheduler to support Ctrl-key. This will allow to users to select cells/days with space between them. CLOSED: The selection in scheduling components should be a single range of two dates in which users can create a single appointment after selected. There would be no purpose in multiple range selection as there are no actions the users can perform with them after selecting.
RadScheduler - e.Appointment.BackgroundId property in AppointmentFormatting event does not work correctly, when you open Edit Appointment dialog form to edit the Background color of selected appointment. Steps to reproduce: 1. Subscribe to AppointmentFormatting event and set e.Appointment.BackgroundId property. 2. Create new Appointment via Edit Appointment dialog form. 3. Open the the appointment via Edit Appointment dialog form and change the Background color. 4. Close the Edit Appointment dialog form. Work around: Do not set this property in AppointmentFormatting event. CLOSED: Modifying data properties of the appointment should not be done on the Formatting events. The Formatting events stand for modifying visual properties of the elements being rendered and are fired during element creation. Modifying any data property of the active view or of the appointments will call another element creation cycle recursively and might result in StackOverflow exceptions or ElementAlreadyAdded exceptions.
If there is WeekDays option set in monthly recurrence rule and try to get the occurence start the method just adds the interval to the start day, rather than considering the WeekDays option. CLOSED: Not an issue. The method is not intended to return real occurrence dates but rather dates that are potential occurrences and must be checked. The method is not correctly named but renaming it will result in a breaking change. The description of the method is updated. To achieve the desired functionality use OccurrenceEnumerator.
Check out the Outlook vertical scrolling abilities in MonthView
To reproduce: Set the following property: this.scheduler.SchedulerElement.EditorManager.EditorViewMode = SchedulerEditorViewMode.EditorDialog; After that when editing an appointment a small dialog should appear on the side of the appointment. You will notice that it is very hard to make the dialog appear and it is not very clear at what conditions. Workaround: Show the dialog whenever you need it. For example, when an appointment is clicked: this.scheduler.SchedulerElement.EditorManager.EditorViewMode = SchedulerEditorViewMode.EditorDialog; this.scheduler.MouseClick += scheduler_MouseClick; void scheduler_MouseClick(object sender, MouseEventArgs e) { if (this.scheduler.ElementTree.GetElementAtPoint(e.Location) as AppointmentElement != null) { this.scheduler.SchedulerElement.EditorManager.BeginEdit(); } }
With the current WeeklyPrintStyle, when you select a StartDate it "jumps" to the previous Monday. There should be a way (another style or improvement to the current weekly style) to select a different week start day.
BindingSource does not set the correct possition in the binding list and always fires the ListChanged event with an index of 0. CLOSED: RadScheduler is not a list-editing control and does not support currency management.
Changes to the Resources collection of RadScheduler are not reflected to the data source. CLOSED: RadScheduler does not provide functionality for editing Resources and therefore this functionality should not be handled by the control but rather by the business logic of your application.
Currently RadScheduler does not support undo/redo operations and history. CLOSED: This should be part of the business logic of your application and not built-in in RadScheduler
The last row in RadScheduler's day view has different size than the others.
Add functionality to arrange appointments according their start time.
As an example, if an appointment starts at 12 o'clock on one day and ends at 12 o'clock on the next day, it should be positioned to start in the middle of the first day cell and end in the middle of the next day, instead of filling both days.
Currently the default RadSchedulerReminder behavior is to remind about appointments before Start date occurs, e.g 15 min before start date. Improve the RadSchedulerReminder to support reminder before the appointment ends too.
When printing the timescale in the printed document should be the same as in the scheduler or with option for changing.
Currently RadScheduler sets the start date to be the first day of the current week in day view. RadScheduler should allow users to change this behavior in order to show the full month.
this.radScheduler1.Appointments.EndUpdate(); Does not refresh the Scheduler view element.
Add a possibility to set the working days in a WorkWeekView of RadScheduler.
Implement functionality to Drag&Drop appointments to the next/previous date range of the current view of RadScheduler.
To reproduce: RadSchedulerLocalizationProvider.CurrentProvider = new CustomSchedulerLocalizationProvider(); radScheduler1.Appointments.Add(new Appointment(DateTime.Now.AddDays(-5), DateTime.Now.AddDays(-4))); radScheduler1.Appointments.Add(new Appointment(DateTime.Now.AddDays(5), DateTime.Now.AddDays(4))); Workaround: radScheduler1.SchedulerElement.Refresh();