Unplanned
Last Updated: 12 Jun 2023 11:24 by ADMIN
In this particular case, we have a custom font set to the cell element in the ElementRender event handler. When AllowFishEye functionality is enabled, it stores the default Font internally for each cell. The font cache is not reset when a custom font is applied at a later stage.
Unplanned
Last Updated: 23 Jan 2023 10:55 by ADMIN
In this case, we select a row by clicking on the row header cell. When we move to a different view (different month) and go back to the previous one with the selected row, we need to click twice on the header row to deselect it.
Unplanned
Last Updated: 30 Oct 2020 10:20 by ADMIN

Please refer to the attached sample project and run it with RadForm2.

Note: the issue is not reproduced consistently.

Unplanned
Last Updated: 29 Mar 2016 10:30 by ADMIN
To reproduce:
public Form1()
{
    InitializeComponent();
    this.radCalendar1.RangeMinDate = new DateTime(2014, 1, 1);
    this.radCalendar1.RangeMaxDate = new DateTime(2017, 7, 17);
    this.radCalendar1.FocusedDate = new DateTime(2014, 2, 4);
    this.radCalendar1.AllowFastNavigation = true;
    this.radCalendar1.FastNavigationStep = 1; 
    this.radCalendar1.AllowMultipleView = true;
    this.radCalendar1.MultiViewColumns = 4;
    this.radCalendar1.MultiViewRows = 3;
    this.radCalendar1.CurrentViewRow = 0;  
    this.radCalendar1.CurrentViewColumn = 1;  
}

The user expects when fast navigating forward, the view to be shifted with one year = 12 months. However, each next forward fast navigation moves with 11 months. 

Workaround: 

            this.radCalendar1.CurrentViewRow = 0;  
            this.radCalendar1.CurrentViewColumn = 0;
            this.radCalendar1.CalendarElement.PreviousButton.PerformClick();
Unplanned
Last Updated: 29 Mar 2016 10:29 by ADMIN
The following line does not move MultiMonthView to the specific date:  

radCalendar1.CalendarElement.View.ViewStartDate = new DateTime(DateTime.Now.Year, 1, 1);


Workaround: use RadCalendar's FocusedDate property instead:

radCalendar1.FocusedDate = new DateTime(2014, 1, 1);
Unplanned
Last Updated: 29 Mar 2016 10:28 by ADMIN
To reproduce: 

1. When set the Disabled to true  of special day has not effect
this.radCalendar1.SpecialDays.Add(new RadCalendarDay(new DateTime(2014,7, 15)));
this.radCalendar1.SpecialDays[0].Disabled = true;

2. When set the Selected and Selectable to false, the special day is still can select and highlight
this.radCalendar1.SpecialDays[0].Selected = false;
this.radCalendar1.SpecialDays[0].Selectable = false;
Unplanned
Last Updated: 29 Mar 2016 10:27 by ADMIN
Meanwhile, you can workaround this by resetting the property every time you change the number of months that RadCalendar displays. This is shown in the next code snippet:

private void radPageViewPage2_ClientSizeChanged(object sender, EventArgs e)
{
    int numViews = this.radPageViewPage2.Size.Height / 240 + 1;
    radCalendar1.MultiViewRows = numViews;
    radCalendar1.ShowFastNavigationButtons = true;
    radCalendar1.ShowFastNavigationButtons = false;
}
Unplanned
Last Updated: 29 Mar 2016 10:24 by ADMIN
When a RadRichTextBox control is added as a child to RadCalendar, the Space and Enter key input is stolen by the calendar.

Workaround is available here: http://www.telerik.com/community/forums/getting-visible-dates-from-radcalendar