Unplanned
Last Updated: 03 Aug 2016 15:00 by Sander
When a time line view is used with resource descriptors and a single resource contains multiple appointments ScrollIntoView scrolls to the wrong position. The resource slot is scrolled in the view but the appointment is not in view when the slot is large.

Attached is a sample project demonstrating the problem.
Unplanned
Last Updated: 03 Aug 2016 14:55 by ADMIN
Appointments are rendered below the AllDayArea.
Completed
Last Updated: 27 Feb 2017 08:32 by ADMIN
With the current implementation fires constantly while dragging over the ScheduleView.

Available in the R1 2017 SP1 Release.
Unplanned
Last Updated: 03 Jan 2017 20:58 by ADMIN
Add ability to display arrows to the scheduleview when there are appointments outside the visible area
http://www.telerik.com/community/forums/wpf/scheduleview/mark-to-see-items-out-of-visible-range.aspx
Unplanned
Last Updated: 04 Mar 2019 18:39 by ADMIN
Introduce properties for customization of the navigation panel such as:
- Showing/hiding a today button
- Showing/hiding the selected view definition ListBox
- Showing/hiding the RadDatePicker and navigation buttons
Completed
Last Updated: 04 May 2018 08:30 by ADMIN
ADMIN
Created by: Kalin
Comments: 1
Category: ScheduleView
Type: Feature Request
4

			
Completed
Last Updated: 08 Feb 2016 16:03 by ADMIN
If the ViewDefinitions are declared in XAML, the binding is ok.

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:50 by ADMIN
Ability to have a reverse flow of dates in TimelineView - start visible days from a later date and end up with an earlier date.
Completed
Last Updated: 01 Feb 2016 15:23 by ADMIN
Available in LIB version 2016.1.201, it will be also available in the 2016 SP1 Release.
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

			
Unplanned
Last Updated: 11 Aug 2016 14:05 by ADMIN
When have several day events and appointments built for the day, changing  the view definition by week  to  day view definition layout broken.
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
Available in LIB version 2016.2.525, it will be also available in the 2016 R2 SP1 release.
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
When using the CreateAppointment command from a context menu, right clicking on a Recurrent appointment and the created appointment takes the Start/End time of the parent appointment not of the ocurrence and also the created appointment is recurrent.
Unplanned
Last Updated: 11 Aug 2016 14:04 by Marco Marchesi
ADMIN
Created by: Telerik Admin
Comments: 2
Category: ScheduleView
Type: Bug Report
4
There are some double lines between the groups in the ScheduleView.
Also, the lines of the headers in the MonthView are displaced.
Unplanned
Last Updated: 26 Mar 2018 09:53 by ADMIN
Completed
Last Updated: 11 Aug 2016 14:04 by Shawn Shaddock
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.