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.
Error message:
Possible workarounds from Admin:
1) Use Lightweight render mode instead of Classic: https://docs.telerik.com/devtools/aspnet-ajax/controls/render-modes#setting-render-mode
2) Disable temporarily the keyboard navigation of the control
3) Use the attached script and load it on the page:
3.1) Using a RadScriptManager (adjust the file name and path to fit your application)
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
<Scripts>
<telerik:RadScriptReference Path="fix.js" OutputPosition="End" />
</Scripts>
</telerik:RadScriptManager>
3.2) In an inline script tag somewhere AFTER the ScriptManager(e.g. at the end of the <form> or <body> tag)
3.3) As a script reference - place it AFTER the script manager as 3.2) or use the defer="defer" attribute
<script defer="defer" src="fix.js"></script>
4) Submit a support ticket if you would prefer a custom Telerik.Web.UI.dll assembly with the issue resolved.
The RadCalendar AccessKey property does not move focus to the RadCalendar control. For example, set the AccessKey="K" for the RadCalendar. <telerik:RadCalendar ID="RadCalendar1" RenderMode="Lightweight" AutoPostBack="true" AccessKey="K" EnableKeyboardNavigation="true" EnableAriaSupport="true" EnableMultiSelect="true" runat="server"></telerik:RadCalendar> However, focused is not moved to the Calendar with the AccessKey using ALT + Shift + key or ALT + key depending on the web browser. Please implement AccessKey for RadCalendar. Thank You, Carla
The Time Picker can be changed to present a more granular selection by changing the Interval setting; doing so however uses consumes considerable screen real-estate. To allow for a compact selection area with a higher range of selections I suggest adding adjustment buttons to the Time Picker title bar that adjust the displayed time up or down by 15 and 5 minute intervals. See attached PDF for example.
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.
When we create special days for radCalendar in code behind, we are notre able to set the ItemStyle property because it is readonly. This property should be opened for assignment like we are able to do so when we create SpecialDays in the html script. Thank you, Alain
This suggestion is add a css class to each anchor tag for each day, a unique css, like: class='day20180213'. with this we can make a css definition: holydays.css day20180213 { background-color:red } // carnival /* day YYYYmmDD */ this option has unlimited uses for any reason you want. how it will works: <td title="terça-feira, fevereiro 13, 2018" class="rcSelected" style=""><a class='day20180213' href="#">13</a></td>
while typing the time in the kendo timepicker there should display the suggestion same like as available in the silverlight. If there is any feature please let us know. Kindly refer enclosed snapshot of silverlight application.
Hi, I would like RadDatePicker to have DropDown Combo boxes for years and months like attached picture please. Kind Regards, Asaf
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.
RadDatePicker/RadDateTimePicker can not set different date than the current one in Win10 (IE11 and Edge) when Finnish and Norwegian culture is used. Microsoft changed the Time separator for these cultures, it breaks not only our JavaScript parsing but the .NET parsing as well. https://connect.microsoft.com/VisualStudio/Feedback/Details/1621722 The issue is fixed for Q3 2015 SP1. Internally we change the TimeSeparator used by the DateInput to ":" for cultures where it is the same as the DateSeparator. It will not affect the DateFormatString.
Currently we are migrating from ComponentArt controls to Telerik controls. We have replaced date picker with Telerik control. Now, as expected, we need the look, feel and behavior as same as previous one – to ensure the user friendliness. Below are few behaviors which we are looking forward in Telerik control. Please guide/assist us to achieve those. • Type date manually in textbox and user should be able to change it using up and down arrow keys as well. o In ComponentArt control I was able to edit every part of the date viz. dd, mm or yyyy individually when the focus is on individual part of date. o If I press “J” then it will 1st select Jan if I press “J” again then it will select Jun if again then it will select Jul. o If I press “11” then it will select “Nov” automatically or of I press “9” then it will select “Sep” automatically. • Don't want user to key in null/blank values – these should be automatically validated by control. • User should neither wipe out content of text box nor remove a single character from text box. If user presses unnecessary keys then ignore it.
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: <<)