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: 07 Dec 2023 11:27 by Martin Ivanov
Currently, if you define your own GroupDescriptionsSource and the last description in the collection is not DateGroupDescription, the all-day area won't be rendered. Allow the all-day area to get rendered even if the DateGroupDescription is not last in the collection.
Completed
Last Updated: 27 Nov 2023 06:23 by ADMIN
Release LIB 2023.3.1127 (27 Nov 2023)
This should be similar to the GetContainerForItemOverride method that allows you to replace the auto-generated container of an items control (like ListBox for example). 

The new method should return an AppointmentItem and the developer should be able to use it in order to create a custom implementation of AppointmentItem.

Unplanned
Last Updated: 24 Nov 2023 12:17 by Stenly
Currently, information about the selected slots for one day can be retrieved when deriving from the SlotSelectionBehavior class or via the SelectedSlot property. We could include a way to provide information about the selected slots for more than one day.
Unplanned
Last Updated: 26 Sep 2023 16:07 by Stenly
The virtualization logic of the group headers expects equal sizes, in order to improve the performance with a lot of appointments. Currently, we do not have an option to restrict or specify a maximum size (width or height depending on the orientation of the view definition).
Duplicated
Last Updated: 09 Mar 2023 16:58 by ADMIN
Created by: Johan
Comments: 0
Category: ScheduleView
Type: Feature Request
3
For a customer project we would like to be able to have the ability to add exceptions to the recurrencepattern of a scheduleview SpecialSlot.

This would be used for displaying different types of working hours which have a recurrence but on occasion also have a exception.

Could this feature be added?

Regards,
Johan Lollinga
Ideo B.V.
Unplanned
Last Updated: 16 Feb 2023 11:01 by Stenly
Currently, RadScheduleView will not adjust the start and end date of the appointments depending on the time zone, in which they were created.
Unplanned
Last Updated: 30 Jan 2023 11:32 by ADMIN
ADMIN
Created by: Geri
Comments: 2
Category: ScheduleView
Type: Feature Request
2
Allow drag and drop of an AllDayEvent from/to the AllDayArea.
Completed
Last Updated: 19 Jan 2023 14:50 by ADMIN
Release R1 2023
ADMIN
Created by: Konstantina
Comments: 1
Category: ScheduleView
Type: Feature Request
16

			
Unplanned
Last Updated: 22 Oct 2021 07:35 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ScheduleView
Type: Feature Request
3
Currently, you can change the size by setting the Width or Height property (based on the header's orientation) of the corresponding GroupHeader element. However, this change works only partially because of the built-in UI virtualization support. Make this work in all expected cases or introduce another API that will allow to change the size of the groups.
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. 
Declined
Last Updated: 09 Nov 2020 14:08 by ADMIN
Created by: Tomas von Peltzer
Comments: 2
Category: ScheduleView
Type: Feature Request
0
For example if Resource "Stol 2" does not have any Appointments it should not appear in the view


Unplanned
Last Updated: 12 Oct 2020 06:26 by Gert
Completed
Last Updated: 05 May 2020 13:27 by ADMIN
Release R2 2020
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 2
Category: ScheduleView
Type: Feature Request
4

			
Completed
Last Updated: 01 May 2020 12:27 by ADMIN
Release R2 2020
Currently the CurrentTimeIndicator is shown under the appointments when its position is set to WholeArea. Add an option to change this and display the indicator on top of the appointments.
Unplanned
Last Updated: 27 Feb 2020 09:38 by ADMIN
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);
	}
}

Unplanned
Last Updated: 22 Jan 2020 16:18 by ADMIN

I need an overview of the appointments in the range of multiple days of several resources (let's say, employees).

For this, the agenda view would be perfect if it shows the days as rows but the grouped resources as columns.

In the current version it as possible to group by resources in the agenda view, but the single resources can be displayed only as rows along with the days. This way an overview is not possible. At now, I have to put several ScheduleView controls side by side, each displaying a single resource, to achieve the desired view.

Therefore I want to engage a feature request:

Please, in the agenda view, allow a grouping of resources with arranging them in a horizontal way, while the days stay arranged in a vertical manner.


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.
1 2 3 4