Unplanned
Last Updated: 07 Feb 2018 23:50 by Uri
Created by: Carl
Comments: 1
Category: Calendar
Type: Feature Request
5
If it is possible, I'd like to be able to select the hour and minute individually from the same popup/dropdown.   
Currently, if you set the interval to anything less than 15 mins the list becomes far too big, imo, and forcing the list to scroll isn't always the most usable way to do things, especially if that list is particularly large (intervals of 5 mins or lower).

It would be really handy if the user could somehow choose the hour and minute separately before the popup/dropdown closes. This would minimise space used because you wouldn't need every instance of each hour/minute combination. You'd just need the hours displayed, and the minutes displayed.
Unplanned
Last Updated: 15 Oct 2020 15:12 by ADMIN
Unplanned
Last Updated: 15 Oct 2013 11:12 by Allan Krøyer
Unplanned
Last Updated: 01 Aug 2016 14:13 by Jerzy Czarnota
Created by: Jerzy Czarnota
Comments: 0
Category: Calendar
Type: Feature Request
1
We have just got issue with WCAG compatibility when applying for WCAG certification.
 The problem is that RadCalendar used for RadDatePicker has a strange behaviour when tabbing. We can't get focus to buttons (<<,<, >, >>)  that are in the header of the Calendar popup. We can successively navigate contemt of the Callendar -days of the month both with Tab and arrow keys (with EnableKeyboardNavigation="true"
 ) , but not to header buttons.
 We found nearly the same problem on Telerik demo: http://demos.telerik.com/aspnet-ajax/calendar/examples/functionality/keyboardnavigation/defaultcs.aspx

 Please look that Calendar at the top of the page does not allow select its header buttons. But the one in popup inside RadDatePicker can tab to its header buttons. 
 (however in strange way order is: days navigation inside Calendar1 by arrows, Tab- RadCalendar1, Tab- header of Callendar1 first button: <<)
Unplanned
Last Updated: 26 May 2021 20:06 by ADMIN
Created by: Lane
Comments: 0
Category: Calendar
Type: Feature Request
1
When handling the SelectionChanged event on a Calendar with EnableMultiSelect="true", there is no way to determine the new selected date(s). The SelectedDatesEventArgs exposes the entire range of selected dates, but it does not tell which of those dates were previously selected. Add a property to the event args that would expose this.

OR

Add an attribute to the RadCalendar when EnableMultiSelect="true" to "DeselectWhenSelectingNewDates." If this is set to true, any date selection on the calendar would deselect any previously selected dates.

Unplanned
Last Updated: 02 Nov 2021 07:58 by ADMIN

When MultiViewColumns > 2 the the month views of the Calendar are not aligned properly. The problem occurs if the week count in the months is different and the ShowOtherMonthsDays property is set to false.

Temporary workaround: Set the ShowOtherMonthsDays="True" property of RadCalendar.

 

Code to reproduce:

        <telerik:RadCalendar ID="cal1" runat="server" Skin="Outlook"
            MultiViewColumns="3" ShowOtherMonthsDays="False" AutoPostBack="True" RenderMode="Lightweight">
        </telerik:RadCalendar>
 

Unplanned
Last Updated: 11 Aug 2023 12:26 by JeffSM

There is no property indicating the next DateTime that user is going to,

for example, we are in November/2022 and the end user click on "<" back button,

the event return the current date.

RadCalendar1_OnHeaderCellRender

the  var nMes = cal.FocusedDate.Month; to return the current month.

Unplanned
Last Updated: 16 Jul 2015 08:55 by ADMIN
Unplanned
Last Updated: 03 Nov 2020 11:20 by ADMIN
Unplanned
Last Updated: 29 May 2020 15:31 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: Calendar
Type: Bug Report
0
Workaround 1) Use .resx files as the attached ones 

Workaround 2) Set properties to ViewState
        RadMonthYearPicker1.MonthYearNavigationSettings.ViewState["_mCancelButtonCaption"] = "my cancel";
        RadMonthYearPicker1.MonthYearNavigationSettings.ViewState["_mTodayButtonCaption"] = "my today";
        RadMonthYearPicker1.MonthYearNavigationSettings.ViewState["_mOkButtonCaption"] = "my ok";