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: 06 Sep 2019 18:49 by ADMIN
Add an API similar to the SlotSelectionBehavior that allows you to customize the highlighted slot. This is the slot that is colored (usually in gray) when you mouse over the timeline of the RadScheduleView control.
Unplanned
Last Updated: 05 Sep 2019 10:43 by ADMIN
Currently, if the ShowAllDayArea property of the ViewDefinition is True, appointments longer than 24 hours are shown in the AllDayArea. We should add an option for such appointments to be shown in the normal slots. 
Completed
Last Updated: 11 Oct 2019 13:20 by ADMIN
Release LIB 2019.3.1014 (10/14/2019)

When the RecurrenceFrequency is set to Year. The GetOccurrences() method of the RecurrencePattern does not respect the Interval property.

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.
Completed
Last Updated: 12 Jun 2019 10:25 by ADMIN
Release R2 2019 SP1
When an appointment is double clicked, the edit appointment dialog is shown. When the escape button is clicked, the edit appointment dialog is closed. When the above 2 actions are performed in quick succession, the appointment disappears. 
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
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: 21 May 2018 18:11 by Brandon
Completed
Last Updated: 26 Jun 2019 15:31 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 5
Category: ScheduleView
Type: Feature Request
2

			
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
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: 17 Oct 2019 13:41 by ADMIN
Release R3 2019 SP
There is a fixed value of 16px set for the Height of the GroupHeader. Thus, when a FontSize bigger than 16px is set, the Text is cut off as the GroupHeader is not resized. The workaround is to predefine the GroupHeaderContentTemplateSelector and remove the fixed Height that is set through it. 

<telerik:GroupHeaderTemplateSelector x:Key="GroupHeaderContentTemplateSelector">
                <telerik:GroupHeaderTemplateSelector.HorizontalTemplate>
                    <DataTemplate>
                        <ContentPresenter Content="{Binding FormattedName}"  Margin="4" />
                    </DataTemplate>
                </telerik:GroupHeaderTemplateSelector.HorizontalTemplate>

                <telerik:GroupHeaderTemplateSelector.VerticalTemplate>
                    <DataTemplate> 
                            <ContentPresenter Content="{Binding FormattedName}" Margin="4" VerticalAlignment="Top">
                                <ContentPresenter.LayoutTransform>
                                    <RotateTransform Angle="-90" />
                                </ContentPresenter.LayoutTransform>
                            </ContentPresenter> 
                    </DataTemplate>
                </telerik:GroupHeaderTemplateSelector.VerticalTemplate>
 </telerik:GroupHeaderTemplateSelector>
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