Completed
Last Updated: 25 Jan 2018 10:59 by ADMIN
ADMIN
Created by: Jack
Comments: 33
Category: Calendar
Type: Feature Request
30
Presently RadCalendar does not support Persian calendar style.

Completed
Last Updated: 25 Jun 2014 16:23 by Jesse Dyck
Created by: Svetlin
Comments: 3
Category: Calendar
Type: Feature Request
8
Allow RadCalendar to have multiview based on years or months.

Resolution: With our latest release(Q2 2014) we are introducing new navigation mode that has very similar behavior the described one. To take the advantages of new mode you need only to set the HeaderNavigationMode property to "Zoom":
For example : this.radCalendar1.HeaderNavigationMode = HeaderNavigationMode.Zoom;
Completed
Last Updated: 23 Sep 2015 08:01 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Calendar
Type: Feature Request
7

			
Completed
Last Updated: 14 Dec 2010 05:41 by ADMIN
Add functionality to customize navigation steps in multiple view of the RadCalendar.
Completed
Last Updated: 11 Feb 2014 13:25 by ADMIN
FIX. RadCalendar - add NewDate and OldDate to the SelectionEventArgs of the SelectionChanging event
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
It will be nice if RadCalendar can show a popup list containing years. Currently, it supports only a list of months.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Completed
Last Updated: 17 Jun 2014 08:00 by ADMIN
Adding the following method CalendardDayCollection.AddRange(IEnumerable Of Date) is an easy way to populate the collection
Unplanned
Last Updated: 15 Aug 2017 09:21 by ADMIN
HeaderWidth and HeaderHeight properties should be made RadProperties and should be declared at RadCalendarElement. This will allow our users to set these properties in theme.
Completed
Last Updated: 26 Dec 2014 12:19 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: Calendar
Type: Feature Request
1
ADD. RadCalendar's TodayButton does not accept shortcuts.
Completed
Last Updated: 08 Oct 2014 12:02 by ADMIN
IMPROVE. RadCalendar - expose the RefreshVisuals method of the CalendarElement
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
When you click on a Navigation Button with the mouse in RadCalendar and hold the button down, then it scrolls automatically to the next/previous views very fast. Same behavior should be supported by the Fast Navigation Buttons.
Unplanned
Last Updated: 15 Aug 2017 09:45 by ADMIN
To reproduce:
- Add RadCalendar to a blank form and set its AllowMultipleSelect property to true.
- Select a date and deselect it right after that. You will notice that the background is not changed.
- The cell is actually deselected but it appears as selected since it is the focused cell and the styles are equal.

Workaround: Change the style for the focused state, which will allow the user to distinguish between focused and selected cells.
Completed
Last Updated: 01 Feb 2011 02:12 by ADMIN
Add functionality to apply custom format to the current date in the footer area.
Completed
Last Updated: 20 Oct 2014 12:07 by ADMIN
Currently the user cannot remove the FocusedDate of RadCalendar.
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Calendar
Type: Feature Request
0

			
Completed
Last Updated: 20 Oct 2014 14:33 by ADMIN
Resolution: 
Add LabelFormat property to change the format of footer. You can use the following code snippet: 
this.radCalendar1.CalendarElement.CalendarStatusElement.LabelFormat = "yy/MM/dd dddd";
Unplanned
Last Updated: 15 Aug 2017 10:08 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 10:08 by ADMIN
Currently, you can use reflection in order to access the properties of the fast navigation popup. 

Workaround: 
this.radCalendar1.HeaderNavigationMode = Telerik.WinControls.UI.HeaderNavigationMode.Popup;

CalendarNavigationElement a = this.radCalendar1.CalendarElement.CalendarNavigationElement;
FieldInfo fi = typeof(CalendarNavigationElement).GetField("dropDown", BindingFlags.NonPublic | BindingFlags.Instance);
RadDateTimePickerDropDown dropDown = (RadDateTimePickerDropDown)fi.GetValue(a);
dropDown.PopupOpening += new RadPopupOpeningEventHandler(dropDown_PopupOpening);
Unplanned
Last Updated: 25 Dec 2020 13:39 by ADMIN
Currently, when AllowMultipleSelect= true the dragging selection is always enabled.