Hi. It would be very good to have an ability to disable autocorrect.
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.
Hi, I would like RadDatePicker to have DropDown Combo boxes for years and months like attached picture please. Kind Regards, Asaf
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.
Put more than two RadDatePicker with single SharedCalendar on page. some RadDatePicker are in side of UpdatePanel with a button in it. when I press that button RadDatePicker behaviour is strange. RadDatePicker inside UpdatePanel not opening Calendar popup while RadDatePicker outside UpdatePanel opens calendar popup but gives javascript error on any date selection. the javascript error is "Unable to get property '_selectedDates' of undefined or null reference". It looks like it is destroying shared calendar object on partial postback. Please find below sample code to replicate the issue. after clicking "Submit" button, it doesn't open calendar popup for "Date 2" and for "Date 1" it opens but doesn't allow to select date and gives JavaScript error. ---------------------- <asp:ScriptManager ID="sc1" runat="server" /> <telerik:RadCalendar ID="dtCal" runat="server" EnableMultiSelect="false" /> Date 1: <telerik:RadDatePicker ID="dt1" Width="103px" runat="server" SharedCalendarID="dtCal" /> <hr /> <asp:UpdatePanel runat="server" ID="up"> <ContentTemplate> Date 2: <telerik:RadDatePicker ID="dt2" Width="103px" runat="server" SharedCalendarID="dtCal" /> <br /> <asp:Button runat="server" ID="btnDT" Text="Submit" /> </ContentTemplate> </asp:UpdatePanel> ---------------------- When i add all controls in UpdatePanel it works properly. but Actual code is much more complex than above sample with too many lines of javascript code and many date pickers on single page and simply all Calendar and DatePicker controls can not be moved in UpdatePanel.
RadMonthYearPicker is missing form the SkinManager's ControlTypeToApplyskin collection
-> When DatePicker renders for the first time, it applies the CSS according to the selected skin. Reference Image: Comtrol in Filter Panel first time render.jpg -> But as soon as I enter into an edit mode or insert than the CSS is not applied to the control and the design of the RadCalender is breaking somehow. Reference Image: Control while Editing.jpg -> Also entering into edit or insert break the design of the other RadCalender control placed in filter panel. Reference Image: Control in Filter Panel.jpg
As I'm using RadDatePicker in my Grid, In RadGrid for the first time, the image beside the calendar control renders as expected. As soon as I enter into "InLine" edit mode there would be 2 images rendered beside the control. And after clicking on cancel there is no change in the image beside the control. Also attached the screenshot for the same.
It would be nice to be able to add to the standard date time formats that the RadDatePicker allows. I don't want to override the standard formats, just add custom formats (ex: ddhhmm MMM yy)
Telerik.Web.UI. Version: 2013.2.611.40 Try the code below with a simple aspx page: <asp:ScriptManager runat="server"/> <telerik:RadDateTimePicker runat="server" ID="DatePicker" /> the code is: protected void Page_Load(object sender, EventArgs e) { DatePicker.SkipMinMaxDateValidationOnServer = true; DatePicker.MinDate = DateTime.Parse("01.01.2014"); DatePicker.SelectedDate = DateTime.Parse("01.01.2013"); DatePicker.SelectedDate = DateTime.Parse("01.01.2015"); } Actual result: Browser shows 01.01.2013 date marked in red but not 01.01.2015 as it supposes to show