Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
All day reccurent appointments are not shown in DayView and in the last shown day of WeekView. If Start/End time is not set it is working as expected.
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
If you click Ok you also create the appointment next to the selected appointment.

Available in LIB version 2016.1.201, it will be also available in the 2016 SP1 Release.
Unplanned
Last Updated: 11 Aug 2016 14:04 by Brannon
Declined
Last Updated: 05 Jan 2017 15:05 by ADMIN
Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
Completed
Last Updated: 08 Feb 2016 16:05 by ADMIN
If RadScheduleView is placed in popup and drag a task a System.InvalidOperationException: The specified Visual is not an ancestor of this Visual exception is thrown.

Available in LIB version 2016.1.208, it will be also available in the 2016 Q1 SP1 Release.
Unplanned
Last Updated: 03 Jan 2017 20:31 by ADMIN
Implement automatic scroll when selecting timeSlots with mouse, maybe also when dragging/resizing app.
Completed
Last Updated: 06 Nov 2014 14:17 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ScheduleView
Type: Bug Report
3
TimeRulerMonthViewGroupItem' TargetType does not match type of element 'TimeRulerGroupItem'
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: 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.
Completed
Last Updated: 26 Jun 2019 15:36 by ADMIN
Here is the link to the example in the XAML SDK Repository:

https://github.com/telerik/xaml-sdk/tree/master/ScheduleView/Database
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: 10 Jan 2019 15:27 by ADMIN
Created by: Stefan
Comments: 0
Category: ScheduleView
Type: Feature Request
3

hi,

 

I can I make a feature request please for the appointment item control. I'd like to be able to have the delete button hidden depending on whether my appointment wants to hide the delete button. Some appointments can be deleted, some can't. the problem with the current option of using the schedule control is that it's all appointments can be deleted or all appointments can't.

because of all the different themes and complexity around them I don't want to change the actual underlying template, so to resolve this myself I have made a source code change in AppointmentItem.OnApplyTemplate. I have added this code in to create a binding:


            // Stefan: start
            // Ensure that the can be Show and hidden depending on the appointment type
            var deleteButton = GetTemplateChild("DeleteButton") as Button;
            if (deleteButton != null)
            {
                BindingOperations.SetBinding(deleteButton, Button.VisibilityProperty, new Binding()
                {
                    Path = new PropertyPath("Appointment.ShowDeleteButton"),
                    Converter = new System.Windows.Controls.BooleanToVisibilityConverter()
                });
            }
            // Stefan: end

hopefully this can be built into the system using a multi-binding where you check for the schedule control allowing deletion and then on a per appointment basis.

Thanks,

Stefan

Unplanned
Last Updated: 18 Sep 2019 10:14 by ADMIN
Created by: Vladimir
Comments: 0
Category: ScheduleView
Type: Feature Request
3
Currently when the RadScheduleView is grouped by some resources, all of them are displayed at once and each is in a separate calendar. We should consider introducing an option for the users to switch between the resource that is visible.
Unplanned
Last Updated: 27 Feb 2020 09:38 by ADMIN
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.