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.


Completed
Last Updated: 17 Jan 2020 06:36 by ADMIN
Release LIB 2020.1.120 (1/20/2020)
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.
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>
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: 24 Sep 2019 06:56 by ADMIN
Release LIB 2019.3.923
The direction of EditAppointmentDialog, RecurrenceChoiceDialogStyle etc. is always LeftToRight even if the ScheduleView itself is RightToLeft.
Unplanned
Last Updated: 19 Sep 2019 10:49 by ADMIN
Currently, separate calendars are created for each time zone.
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: 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
Completed
Last Updated: 26 Jun 2019 15:31 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 5
Category: ScheduleView
Type: Feature Request
2

			
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. 
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