Unplanned
Last Updated: 03 Aug 2016 14:54 by ADMIN
Currently when the Windows FontSize is set to 125%, the TimeRuler lines in RadScheduleView have different thickness.
Unplanned
Last Updated: 30 Jan 2023 11:32 by ADMIN
ADMIN
Created by: Geri
Comments: 2
Category: ScheduleView
Type: Feature Request
3
Allow drag and drop of an AllDayEvent from/to the AllDayArea.
Unplanned
Last Updated: 09 Jun 2021 14:45 by ADMIN
Currently, the groups at the left side of the view that show the days have some automatic height applied based on the current viewport. Allow setting the height of the groups manually. 
Unplanned
Last Updated: 03 Aug 2016 14:54 by Claudio
ADMIN
Created by: Konstantina
Comments: 1
Category: ScheduleView
Type: Bug Report
2
When the appointment is in the AllDayArea and it ends at the CurrentDate and the DayStartTime and DayEndTime are set, the arrow for continuance is still shown.
Unplanned
Last Updated: 03 Aug 2016 14:55 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 14:55 by ADMIN
ADMIN
Created by: Yana
Comments: 0
Category: ScheduleView
Type: Feature Request
2
Render the TimeRuler of the two specific days during the year in DayViewDefinition in the following way:

When setting back the clock:

00:00
01:00
02:00
(02:00)
03:00
04:00
...

And when setting it forward it would be:

00:00
01:00
03:00
04:00
...
Unplanned
Last Updated: 24 Dec 2019 10:29 by ADMIN
Created by: Dinko
Comments: 0
Category: ScheduleView
Type: Feature Request
2
We can create an SDK example that demonstrates how RadScheduleView can be populated from PostgreSQL DataBase.
Unplanned
Last Updated: 19 Sep 2019 10:49 by ADMIN
Currently, separate calendars are created for each time zone.
Unplanned
Last Updated: 03 Jan 2017 21:18 by Niels
Unplanned
Last Updated: 21 May 2018 18:11 by Brandon
Unplanned
Last Updated: 20 Feb 2018 13:42 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ScheduleView
Type: Feature Request
2
This is valid for the DayView and the WorkDayView but it could be researched if applicable also for other views.

Currently, the maximum height of an appointment is determined by the MinorTickLength applied. If the slots between the ticks are too small, the appointment's subject will be clipped vertically. In Outlook there is a mechanism that applies something like a minimum height which allows the subject to be drawn regardless the actual size of the appointment.
Unplanned
Last Updated: 16 Jan 2018 09:24 by ADMIN
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ScheduleView
Type: Bug Report
2

			
Unplanned
Last Updated: 03 Aug 2016 14:55 by ADMIN
Unplanned
Last Updated: 16 Jan 2024 16:56 by Martin Ivanov
Currently, if you add an appointment that is partially in two days (lets say, start=16 Jan 2024 23:00:00; end=17 Jan 2024 13:00:00), two AppointmentItem containers are created so that the appointment continues drawing on the next day. This is the expected behavior and it brings clear visualization of the corresponding event.

In some scenarios, the user may not want to see the second AppointmentItem. For example, if the day is defined to be more than 24 hours (via the DayStart/EndTime of the DayViewDefinition). In that case, the day group may be enough to show the full appointment, so the user may not want to see the second AppointmentItem in the next day.

Add a mechanism that allows you cancel the creation of the second AppointmentItem. This could be a property that tells if the continued AppointmentItem should be created, or a method override, or a filter (like the OccurrenceFilter or AppointmentFilter).
Unplanned
Last Updated: 04 Jan 2021 12:13 by ADMIN

The GetOccurrencesWithoutExceptionsFromDateTimeRange should return the occurrences of a recurring appointment, without the exceptions (modified or deleted occurrences). However, now the method returns modified occurrences and skips only the deleted ones. The method should skip also the modified occurrences.  

To work this around, exclude the exceptions using their state property:

var occurrencesWithoutExceptions = appointment.GetOccurrencesWithoutExceptionsFromDateTimeRange(appointment.Start, DateTime.Now.AddDays(130)).Where(o => o.State != RecurrenceState.Exception);

Unplanned
Last Updated: 05 Aug 2016 13:52 by Stephen Tearle
Reproducible in the latest demo.

Create daily recurrence. Select multiple occurrences and drag them. For the first time they will be dragged. Then select exceptional (this is important!) occurrences and drag them - only the occurrence which was selected first will be dragged.
Unplanned
Last Updated: 07 Dec 2020 10:55 by ADMIN
When an exception occurrence is created and the MaxOccurrences of a recurring appointment is changed, the exception occurrence is not removed. 
Unplanned
Last Updated: 14 Feb 2020 09:08 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ScheduleView
Type: Feature Request
1
Current, there is no public API that let you know when the active view definition is changed. Expose an event for this.

Now, you can listen for changes in the active view definition by overriding the OnActiveViewDefinitionChanged method of RadScheduleView.
public class CustomScheduleView : RadScheduleView
{
	protected override void OnActiveViewDefinitionChanged(ViewDefinitionBase oldValue, ViewDefinitionBase newValue)
	{
		base.OnActiveViewDefinitionChanged(oldValue, newValue);
	}
}