The AppointmentSelecting/AppointmentSelected events should not fire when dropping or resizing an appointment.
RadReminderBindableObject remains in memory when using the ContainsRemindObject or RemoveRemindObject methods.
Appointments in RadScheduler are not arranged correctly when DayView has ruler start and end scales set.
Scheduler's DayViewElement is shifted down when dragging appointment. This only happens when DayCount = 1.
The scrollbar which scrolls trough the appointments on a single row in MonthView is not aligned properly.
If the AllowDelete property of an appointment is set to false, the user is still able to delete appointments via the Delete key.
Exception is thrown by RadScheduler when you clear the Resources collection while in grouped MonthView.
The CellClick event of RadScheduler is not fired when you click on a cell in MonthView.
When you use AppointmentFormatting event to add a single child element to an AppointmentElement and you change between views, the child element is not arranged correctly when you switch back to DayView or WeekView.
When TextWrap is true, the text of the appointments in month view and timeline view is displayed outside of the appointment area.
The appointment's data item is not changed when you drag and drop an appointment from one resource view of MonthView to another.
The SelectAppointment method of SchedulerUIHelper class does not fire the AppointmentSelected event.
'This Month' button in RadScheduler's MonthView does not set the correct number of weeks.
Changes to the Resources collection of RadScheduler are not reflected to the data source. CLOSED: RadScheduler does not provide functionality for editing Resources and therefore this functionality should not be handled by the control but rather by the business logic of your application.
FIX. Exception in RadScheduler when changing from Timeline to any other view and all views have been initialized in advance.
To reproduce: Add an appointment with the text "<html><size=9>Erin Swardz</br><color=Red>PO 2315</html>" the appointment looks formatted in the scheduler, however when in PrintPreview/Print the html code is printed in raw format Workaround: Strip all html in order to print pure text - void scheduler_AppointmentPrintElementFormatting(object sender, PrintAppointmentEventArgs e) { string replaceBr = e.AppointmentElement.Text.Replace("</br>", " "); string result = Regex.Replace(replaceBr, @"<[^>]*>", string.Empty); e.AppointmentElement.Text = result; }
To reproduce: Add a RadScheduler to a form and try the following method : private void Scroll() { SchedulerDayView dayView = radScheduler1.GetDayView(); SchedulerWeekView weekView = radScheduler1.GetWeekView(); dayView.RulerStartScale = 7; dayView.RulerEndScale = 22; if (radScheduler1.ActiveViewType == SchedulerViewType.Day) { if (dayView != null) { dayView.RangeFactor = ScaleRange.QuarterHour; } } else if (radScheduler1.ActiveViewType == SchedulerViewType.Week) { if (weekView != null) { weekView.RangeFactor = ScaleRange.QuarterHour; } } dayView.RulerTimeFormat = RulerTimeFormat.hours24; SchedulerDayViewElement dayViewElement = this.radScheduler1.SchedulerElement.ViewElement as SchedulerDayViewElement; if (dayViewElement != null) { dayViewElement.DataAreaElement.Table.ScrollToTime(new TimeSpan(DateTime.Now.Hour, 0, 0)); } } As you can see the scroll is not correct.
1. Create a new project and add RadScheduler in week view mode. 2. Add all day event. 3. Export the all day event in iCal format. 4. Clear all appointments and import the exported file.
1. Open the Timeline example for RadScheduler in our QSF. 2. Click the right mouse button. 3. Hover the last menu item without clicking it. 4. A submenu appears, try to hover one of its items.
I found on you forum that someone else had this problem and was recommended to upgrade their printer driver. I upgraded mine and I have upd-pcl6-x64.5.6.0.14430 dated 12/15/2012 and it still fails. The error I am getting is "The value '-1' is not a valid value for the enum 'PaperSourceKind'" Can I set a default value for the paper source kind to get around this problem? If so, how do I set it? I tried to, but it's read only.