All day reccurent appointments are not shown in DayView and in the last shown day of WeekView. If Start/End time is not set it is working as expected.
If you click Ok you also create the appointment next to the selected appointment. Available in LIB version 2016.1.201, it will be also available in the 2016 SP1 Release.
If RadScheduleView is placed in popup and drag a task a System.InvalidOperationException: The specified Visual is not an ancestor of this Visual exception is thrown. Available in LIB version 2016.1.208, it will be also available in the 2016 Q1 SP1 Release.
Implement automatic scroll when selecting timeSlots with mouse, maybe also when dragging/resizing app.
TimeRulerMonthViewGroupItem' TargetType does not match type of element 'TimeRulerGroupItem'
For a customer project we would like to be able to have the ability to add exceptions to the recurrencepattern of a scheduleview SpecialSlot. This would be used for displaying different types of working hours which have a recurrence but on occasion also have a exception. Could this feature be added? Regards, Johan Lollinga Ideo B.V.
Allow drag and drop of an AllDayEvent from/to the AllDayArea.
Here is the link to the example in the XAML SDK Repository: https://github.com/telerik/xaml-sdk/tree/master/ScheduleView/Database
Currently when the Windows FontSize is set to 125%, the TimeRuler lines in RadScheduleView have different thickness.
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