Unplanned
Last Updated: 29 Mar 2016 10:27 by ADMIN
ADMIN
Ivan Todorov
Created on: 19 Sep 2011 06:19
Category: Calendar
Type: Bug Report
2
FIX. RadCalendar - ShowFastNavigationButtons property does not work after the number of displayed months has changed
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;
}
0 comments