Completed
Last Updated: 21 Jan 2013 10:47 by ADMIN
If one drags an appointment from the all day area to the first cell of the same day which starts at 12:00 AM or 0:00 and vice versa the AppointmentMoving event does not fire.
Completed
Last Updated: 28 Dec 2012 02:58 by ADMIN
If one sets the AllowAppointmentMove to false he can still drag drop the all day appointments in the headers of a day view.
Completed
Last Updated: 06 Apr 2016 10:30 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
0
Add the ability to display the text  in appointments vertically.
Completed
Last Updated: 14 May 2014 09:05 by ADMIN
Add the ability to change the width of the group headers when the scheduler is grouped by Resource.

Resolution: You can set the size using code snippet: 
((SchedulerViewGroupedByResourceElementBase)this.radScheduler1.ViewElement).SetResourceSize(0, 0.5f);
Completed
Last Updated: 10 Jun 2014 18:48 by ADMIN
Completed
Last Updated: 10 Apr 2014 11:06 by ADMIN
To reproduce:
Subscribe for the ContextMenuShowing event of RadScheduler and use the following code:
private void radScheduler1_ContextMenuShowing(object sender, SchedulerContextMenuShowingEventArgs e)
{
   e.ContextMenu.Items.Clear();
   e.ContextMenu.Items.Add(new RadMenuItem("Item"));
}

Right-Click on two appointments and you will notice the exception

Workaround:
Add three invisible items:
private void radScheduler1_ContextMenuShowing(object sender, SchedulerContextMenuShowingEventArgs e)
{
   e.ContextMenu.Items.Clear();
   e.ContextMenu.Items.Add(new RadMenuItem("Item"));
   for (int i = 0; i < 3; i++)
   {
       e.ContextMenu.Items.Add(new RadMenuItem() { Visibility = ElementVisibility.Collapsed });
   }
}
Completed
Last Updated: 04 Jul 2014 10:15 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
0
To reproduce:
Add a RadScheduler and a database with appointments. Set the recurrence rule to the following:
FREQ=WEEKLY;UNTIL=20140102;BYDAY=TH;WKST=SU

A first chance exception will be thrown and the appointments will not show correctly.

Workaround:
Before setting the recurrence rule make sure that the UNTIL keyword's value is in the following format: 20140102T235959Z or more specifically - yyyyMMdd\\THHmmss\\Z
Completed
Last Updated: 04 Jul 2014 09:53 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
0
To reproduce:
Add a RadScheduler with a database with appointments. In the recurrence rule of the appointments add the keyword FREQ with value MONTHLY- FREQ=MONTHLY;UNTIL=20140102T235959Z;BYDAY=TH;WKST=SU

You will notice that despite that the frequency of the recurrence is weekly.
Completed
Last Updated: 03 Aug 2011 07:54 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
0
Setting the ActiveView of a grouped by resources RadScheduler to WeekView causes the control to freeze for a few seconds.
Completed
Last Updated: 11 Feb 2010 15:52 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
0
TimelineView appointments representation
Completed
Last Updated: 11 Feb 2010 15:53 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
0
Possibility to group all appointments by their assigned resources in TimelineView
Completed
Last Updated: 26 Feb 2014 13:56 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Scheduler/Reminder
Type: Feature Request
0
Implement RadScheduler Timeline View. Add design time support, theming capabilities, the works.
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 May 2011 03:19 by ADMIN
Add option to hide the AllDayHeader in DayView of RadScheduler and display appointments longer than 24h in the appointments area.
Completed
Last Updated: 10 Jul 2012 03:36 by ADMIN
Currently, when you hit the Delete key, only that occurrence is deleted. There should be a dialog which prompts whether to the delete the whole series or just this occurrence.
Completed
Last Updated: 28 May 2012 07:51 by ADMIN
When AutoScrollToWorkTime is enabled, RadScheduler does not scroll correctly to the work time when it is initially displayed.
Completed
Last Updated: 05 Jul 2012 04:56 by ADMIN
The first time you drag an appointment after RadScheduler has loaded in grouped DayView mode, if you drag that appointment fast, an exception will be thrown.
Completed
Last Updated: 10 Jul 2012 03:29 by ADMIN
When you add simple recurring appointment and edit some of its recurrences to create an exception, then open the series and remove the recurrence by clicking the Remove Recurrence button, the normal occurrences will disappear but the exceptions will still be present.
Completed
Last Updated: 02 Jul 2012 01:46 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
0
The event is not fired in case you select the previously selected appointment in a different resource.
Completed
Last Updated: 29 Jun 2012 03:41 by ADMIN
The NewResourceId property of the event arguments on the AppointmentMoved/Moving events is always null. Also the events do not fire correctly the first time when an appointment is moved from one resource to another.