Completed
Last Updated: 03 Jun 2019 06:27 by ADMIN
Release LIB 2019.2.603 (06/03/2019)
The DragDropState.TargetedApppointment property is not updated correctly when dropping an item from an external source. For example drag-drop an object from RadGridView control.
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
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

Completed
Last Updated: 05 Jul 2018 13:00 by ADMIN
Unplanned
Last Updated: 21 May 2018 18:11 by Brandon
Completed
Last Updated: 04 May 2018 08:30 by ADMIN
ADMIN
Created by: Kalin
Comments: 1
Category: ScheduleView
Type: Feature Request
4

			
Unplanned
Last Updated: 28 Mar 2018 10:58 by ADMIN
Make it possible to render custom elements in the TimeRuler of the control.

Possible uses could be when you want to render an indicator like the CurrentTimeIndicator but for different time zone.
Unplanned
Last Updated: 26 Mar 2018 09:53 by ADMIN
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.
Completed
Last Updated: 06 Feb 2018 16:05 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: ScheduleView
Type: Feature Request
8
Create Category and TimeMarker group descriptions that allow grouping by Category and TimeMarker.
Unplanned
Last Updated: 16 Jan 2018 09:24 by ADMIN
Completed
Last Updated: 16 Oct 2017 10:47 by ADMIN
Completed
Last Updated: 16 Oct 2017 10:45 by ADMIN
  Steps to reproduce:
  1.Open the attached solution, build and run the sample application.
    2.There are two appointments created in the view. Double click the 'Appointment2' to edit it.
    3.Select 'Room 1' from the 'Room' combo box and unselect 'Room 2'.
    4.Click OK to apply the changes.
    5.'Appointment2' is moved to 'Room 1' however it also becomes unselected as the 'Appointment1' becomes the selected one.

Completed
Last Updated: 11 May 2017 10:55 by ADMIN
Completed
Last Updated: 03 May 2017 14:05 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 10
Category: ScheduleView
Type: Feature Request
46
Ability to grouped the appointments in hierarchical groups.
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.