Completed
Last Updated: 13 May 2014 08:39 by Jesse Dyck
ADMIN
Created by: Dimitar
Comments: 1
Category: Scheduler/Reminder
Type: Bug Report
1
To reproduce:
- Handle the CellFormatting event.
- Set CellElement Text property to a very long text.

Workaround:
Set CellElement MaxSize property like this:

void radScheduler1_CellFormatting(object sender, Telerik.WinControls.UI.SchedulerCellEventArgs e)
{
    e.CellElement.MaxSize =  new Size(150,23);
}
Completed
Last Updated: 26 Feb 2014 15:09 by ADMIN
Add an option for SchedulerMonthlyPrintStyle to show the text of the appointments, not only the dates.
Completed
Last Updated: 16 Oct 2013 03:50 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
1
Expose some of the printing methods to allow derived classes to override them for greater customization support.
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.
Declined
Last Updated: 06 May 2014 11:20 by ADMIN
Add the NavigateBackwardsButton and NavigateForwardsButton's text to the localization provider.

DECLINE REASON:
The text in these buttons was visible due to an issue in the Aqua theme. The text of these buttons is not visible in any theme by design therefore this item will be declined as its implementation will be redundant.
Completed
Last Updated: 10 Apr 2014 10:25 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
1
Add the ability to have a scrollbar in the cell where AllDay appointments are stored. The scrollbar should show after a certain amount of AllDay appointments have been added.
Completed
Last Updated: 20 Aug 2010 03:16 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
1
Allow customizations of the height of RadSchedulers header in timeline view.
Completed
Last Updated: 17 Oct 2011 09:40 by ADMIN
Expose events that are fired when the user click the navigation elements in RadScheduler.
Completed
Last Updated: 15 Sep 2011 03:43 by ADMIN
Add possibility to manipulate appointments' height in the MonthView of RadScheduler.
Completed
Last Updated: 12 Sep 2011 04:41 by ADMIN
Add possibility to customize the action of the overflow button in a month cell of RadScheduler.
Declined
Last Updated: 13 May 2014 15:18 by ADMIN
The following scenario should be possible:

1. Create daily occurring appointment from 10:00 AM to 11:00 AM
2. Edit the second occurrence to start at 12:00 PM to 01:00PM
3. Move it to the previous date.
3. Both the occurrence at 10:00 AM and the exception at 12:00PM should be visible
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: 02 May 2012 02:25 by ADMIN
The user should be able to continuously resize appointments to multiple days when dragging to the left or right.
Completed
Last Updated: 03 Aug 2012 06:34 by ADMIN
When RadScheduler is in MultiDayView and you try to change the ruler scale to 5 min using the context menu of the ruler, the application will freeze.
Completed
Last Updated: 03 Aug 2012 04:30 by ADMIN
If you create a recurring appointment, delete one of its occurrences and export the calendar, when you import it back the deleted occurrence will be visible.
Completed
Last Updated: 04 Oct 2012 03:09 by ADMIN
If you add a recurring appointment in RadScheduler and you set its Visible property to false, the occurrences will still be visible.
Completed
Last Updated: 24 Aug 2012 05:44 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
1
multiDayView.AllowAppointmentResize = false will not prevent the appointments in MultiDayView from being resized and you should set radScheduler.AllowAppointmentResize instead.
Completed
Last Updated: 13 Dec 2012 07:55 by ADMIN
The date label in RadSchedulerNavigator is not updated when you change the Intervals collection in multiday view.
Completed
Last Updated: 13 Dec 2012 08:06 by ADMIN
If you add multiple intervals to MultiDayView and enable grouping, you will see that the displayed dates are not correct.
Completed
Last Updated: 19 Nov 2012 03:14 by Jesse Dyck
To reproduce the issue, add a RadDock with one tool window, add a RadSchedulerNavigator inside that window, run the project and unpin/pin the tool window. You will see that the selected timezone has changed.

To workaround the issue, remove the AssociatedScheduler of RadSchedulerNavigator at design time and then add this code in the form's constructor:
            this.radSchedulerNavigator1.BindingContext = new BindingContext();
            this.radSchedulerNavigator1.AssociatedScheduler = this.radScheduler1;