Completed
Last Updated: 15 Nov 2012 07:58 by Jesse Dyck
The AppointmentSelecting/AppointmentSelected events should not fire when dropping or resizing an appointment.
Completed
Last Updated: 17 Jan 2013 03:51 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
1
RadReminderBindableObject remains in memory when using the ContainsRemindObject or RemoveRemindObject methods.
Completed
Last Updated: 23 May 2011 04:24 by ADMIN
Appointments in RadScheduler are not arranged correctly when DayView has ruler start and end scales set.
Completed
Last Updated: 11 Apr 2011 05:15 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
1
Scheduler's DayViewElement is shifted down when dragging appointment. This only happens when DayCount = 1.
Completed
Last Updated: 09 Apr 2012 08:08 by ADMIN
The scrollbar which scrolls trough the appointments on a single row in MonthView is not aligned properly.
Completed
Last Updated: 09 Apr 2012 04:41 by ADMIN
If the AllowDelete property of an appointment is set to false, the user is still able to delete appointments via the Delete key.
Completed
Last Updated: 20 Jan 2012 04:34 by ADMIN
Exception is thrown by RadScheduler when you clear the Resources collection while in grouped MonthView.
Completed
Last Updated: 20 Mar 2012 11:24 by ADMIN
The CellClick event of RadScheduler is not fired when you click on a cell in MonthView.
Completed
Last Updated: 05 Jan 2012 07:48 by ADMIN
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.
Completed
Last Updated: 07 Feb 2012 05:11 by Jesse Dyck
When TextWrap is true, the text of the appointments in month view and timeline view is displayed outside of the appointment area.
Completed
Last Updated: 23 Nov 2011 21:58 by Jesse Dyck
The appointment's data item is not changed when you drag and drop an appointment from one resource view of MonthView to another.
Completed
Last Updated: 14 Sep 2011 04:25 by ADMIN
The SelectAppointment method of SchedulerUIHelper class does not fire the AppointmentSelected event.
Completed
Last Updated: 19 Oct 2011 04:00 by ADMIN
'This Month' button in RadScheduler's MonthView does not set the correct number of weeks.
Declined
Last Updated: 09 May 2014 12:59 by ADMIN
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.
Completed
Last Updated: 13 Jul 2011 10:08 by ADMIN
FIX. Exception in RadScheduler when changing from Timeline to any other view and all views have been initialized in advance.
Completed
Last Updated: 10 Jun 2014 18:49 by ADMIN
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;
}
Completed
Last Updated: 28 Dec 2015 15:21 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: Scheduler/Reminder
Type: Bug Report
1
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.
Completed
Last Updated: 08 Jan 2013 10:13 by ADMIN
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.
Completed
Last Updated: 04 Sep 2012 09:52 by ADMIN
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.
Completed
Last Updated: 19 Feb 2013 06:17 by ADMIN
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.