Unplanned
Last Updated: 05 Aug 2016 13:52 by Stephen Tearle
Reproducible in the latest demo.

Create daily recurrence. Select multiple occurrences and drag them. For the first time they will be dragged. Then select exceptional (this is important!) occurrences and drag them - only the occurrence which was selected first will be dragged.
Unplanned
Last Updated: 04 Jan 2017 07:28 by ADMIN
The resize (splitter) controls would be used to select (get) the time space which they wrap. For example please refer the attached screenshot.
Unplanned
Last Updated: 03 Aug 2016 14:54 by ADMIN
Unplanned
Last Updated: 04 Jan 2017 13:06 by Joshua Obal
Drag and drop is not working properly for RadScheduleView WPF running inside WindowsFormsHost, in a WPF Browser Application. When you drag an appointment, it drops it in another location. 

The hierarchy of child controls is as follows:
•	WPF XAML Browser App page, containing a WinFormsHost  (WPF)
  o	WInFormsControl containing a ElementHost control (WinForms)
   	WPFUserControl containing RadScheduleView (WPF)
Please see the attached sample project that demonstrates this issue. I would like to make the whole application WPF, however the parents of the WPFUserControl are an existing application where we want to include the RadScheduleView.
Unplanned
Last Updated: 03 Jan 2017 21:08 by ADMIN
When double click on the right of the ViewDefinition buttons new Appointment dialog is shown
Completed
Last Updated: 31 Jan 2017 14:12 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 3
Category: ScheduleView
Type: Bug Report
1
Available with LIB version 2016.3.1205, it will be also available in the 2017 R1 release.
Completed
Last Updated: 06 Feb 2017 15:17 by ADMIN
Available in LIB version 2017.1.206 , it will be also available in the R1 2017 SP1 Release.
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.
Completed
Last Updated: 11 May 2017 10:55 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: 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: 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. 
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: 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);
	}
}

Completed
Last Updated: 26 Jun 2024 08:31 by ADMIN
Release R2 2020
Currently the CurrentTimeIndicator is shown under the appointments when its position is set to WholeArea. Add an option to change this and display the indicator on top of the appointments.
Completed
Last Updated: 12 Oct 2020 11:23 by ADMIN
Release LIB 2020.3.1012 (10/12/2020)

Hello ,

some of our users noticed that the RadScheduleView control has a weird display bug in timeline mode when

  • there are a lot of resources and
  • you enter timeline view after being in month view first and
  • and the window is rather small.

The following screenshot shows, what the timeline should look like (I used the default Calendar template and added a few more resources and random appointments for each resource by modifying SampleContentService.cs a bit, see comments in attachment, and adding the resources in CalendarView.xaml, l.316):

And the following Screenshot shows what the same view looks like under the previously mentioned circumstances. It seems that the resource headers are not rendered anymore and all appointments are stuck to the first row.

 

Steps to reproduce:

  • Start the sample project from the attachment.
  • Check as many checkboxes on the left side as possible
  • Make the window rather small. I don't yet know exactly when the problem occurs. However, it seems to have something to do with scrolling. For me, the problem occured at a window height where around 7 resource lines would have fit into the scheduleview.
  • Switch from Day View to Month View
  • Switch from Month View to Timeline View
  • The scheduleview should now look as in my second screenshot.
  • In case it does not look like in my screenshot:
  • Switch back to Day View (or any other view it seems)
  • change the window size (probably make it smaller)
  • Switch to month view
  • Switch to Timeline View again. Rinse and repeat. Eventually, the display bug should occur pretty reliably.

Whenever this display bug occurs, any change like scrolling, resizing the window, adding an appointment restores the correct layout.

 

This problem seems to exist in UI for WPF 2020 R2 and R3

 

If I can provide you with any more information, please let me know.

 

Regards,

Simon Müller

Hofmann Fördertechnik GmbH


Unplanned
Last Updated: 07 Dec 2020 10:55 by ADMIN
When an exception occurrence is created and the MaxOccurrences of a recurring appointment is changed, the exception occurrence is not removed.