Completed
Last Updated: 12 May 2014 14:02 by Jesse Dyck
Add the possibility to have multiple time intervals for a working range and to have separate working ranges for different resources.
Completed
Last Updated: 12 May 2014 08:34 by ADMIN
Check out the Outlook vertical scrolling abilities in MonthView
Completed
Last Updated: 12 May 2014 08:13 by ADMIN
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();
    }
}
Completed
Last Updated: 10 May 2014 10:00 by ADMIN
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.
Completed
Last Updated: 08 May 2014 15:37 by Svetlin
The last row in RadScheduler's day view has different size than the others.
Completed
Last Updated: 08 May 2014 15:02 by ADMIN
ADMIN
Created by: Dobry Zranchev
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
2
Add functionality to arrange appointments according their start time.
Completed
Last Updated: 08 May 2014 15:01 by ADMIN
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.
Completed
Last Updated: 08 May 2014 11:43 by Jesse Dyck
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.
Completed
Last Updated: 08 May 2014 10:48 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
1
When printing the timescale in the printed document should be the same as in the scheduler or with option for changing.
Completed
Last Updated: 08 May 2014 09:44 by ADMIN
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.
Completed
Last Updated: 08 May 2014 08:39 by ADMIN
this.radScheduler1.Appointments.EndUpdate();

Does not refresh the Scheduler view element.
Completed
Last Updated: 07 May 2014 12:52 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
2
Add a possibility to set the working days in a WorkWeekView of RadScheduler.
Completed
Last Updated: 07 May 2014 12:35 by ADMIN
Implement functionality to Drag&Drop appointments to the next/previous date range of the current view of RadScheduler.
Completed
Last Updated: 07 May 2014 12:05 by ADMIN
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();
Completed
Last Updated: 30 Apr 2014 15:27 by ADMIN
Completed
Last Updated: 28 Apr 2014 12:58 by ADMIN
When the range factor of the ruler is less than one hour, it should be possible to enable displaying the partial times for each row (for example 10:15, 10:30, 10:45 ...)
Completed
Last Updated: 28 Apr 2014 08:12 by ADMIN
RadScheduler becomes slow when adding appointments with recurrence rule that affects large time periods (year for example)
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Boyko Markov
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
0
Html rendered text is not clipped correctly in the visual appointment's bounds.
Completed
Last Updated: 23 Apr 2014 12:54 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
2
If you have 3 appointments at 13:00, 2 of which end at 14:00 and the third ends at 17:00
and then you add another appointment that starts at 14:30 and stops at 15:30, the width of this appointment is 1/3 of the total with for the day although there is room for this appointment to be 2/3 of the width of that day.
Completed
Last Updated: 23 Apr 2014 06:29 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
3
The end user should be able to resize or move recurring appointments. As a result, either an exception occurrence should be created or the whole series should be modified.