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.
Appointments are rendered below the AllDayArea.
With the current implementation fires constantly while dragging over the ScheduleView. Available in the R1 2017 SP1 Release.
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
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
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.
Ability to have a reverse flow of dates in TimelineView - start visible days from a later date and end up with an earlier date.
Available in LIB version 2016.1.201, it will be also available in the 2016 SP1 Release.
When have several day events and appointments built for the day, changing the view definition by week to day view definition layout broken.
Available in LIB version 2016.2.525, it will be also available in the 2016 R2 SP1 release.
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.
There are some double lines between the groups in the ScheduleView. Also, the lines of the headers in the MonthView are displaced.
Available in LIB version 2015.3.1026, it will be also available in the 2015 Q3 SP.
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