Completed
Last Updated: 14 Oct 2015 10:51 by ADMIN
Unplanned
Last Updated: 15 Oct 2013 11:12 by Allan Krøyer
Declined
Last Updated: 20 Jan 2015 15:38 by ADMIN
Created by:
Comments: 1
Category: Calendar
Type: Bug Report
1
Hi everyone. I got an issue when I used RadCalendar under IE10. There is a big blank area on the right of this control after I clicked next month or next year for navigation. But it displayed OK under Firefox.
Does anyone get this problem? Is there any solution to fix it?  
Thank you.
Declined
Last Updated: 01 Nov 2013 13:06 by Piyushkumar
Hi,
Reported & Replicated so far on IE 9.
I have an APS.net user control containing 2 RadDateTimePickers.

The UI gets screwed on IE 9 on first load. (Screenshot attached) Icons become available when we click on Calander icon link for 2-3 times and then after it is available on subsequent loads in same scenario.

I am the one who recommended Telerik in my team and our implementation is pending just because of this as many of our clients use IE 9. Please fix ASAP or suggest simple work around.

Thanks,
Piyush
Declined
Last Updated: 14 Feb 2014 06:44 by ADMIN
Created by: Phillip Moore
Comments: 1
Category: Calendar
Type: Bug Report
1
I placed a RadMonthYearPicker on my page.

<telerik:RadMonthYearPicker DateInput-DateFormat="MMMM, yyyy" DateInput-DisplayDateFormat="MMMM, yyyy" Skin="MetroTouch" ID="MYPickerEnd2" CssClass="MYPickerEnd2" runat="server" />

var monthyearpicker = $find("<%= MYPickerEnd2.ClientID %>");

I am getting null every time.

On my page I am getting this as the client id: ctl00_MainContent_AnalyticOutline_MYPickerEnd2

I was going to use javascript to open the RadMonthYearPicker when clicking on some specific text on our page.
Completed
Last Updated: 04 May 2015 09:08 by ADMIN
Completed
Last Updated: 30 Apr 2015 15:14 by ADMIN
Completed
Last Updated: 19 Mar 2019 14:51 by ADMIN
Completed
Last Updated: 17 Dec 2020 18:54 by ADMIN
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.
Completed
Last Updated: 13 Aug 2021 12:33 by ADMIN
Release R2 2019
RadMonthYearPicker is missing form the SkinManager's ControlTypeToApplyskin collection
Completed
Last Updated: 01 May 2018 13:43 by ADMIN
-> 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
Completed
Last Updated: 09 Jun 2021 16:30 by ADMIN
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.
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>
 

Completed
Last Updated: 23 Oct 2020 09:34 by ADMIN
Release R3 2020
Created by: DocuPhase
Comments: 0
Category: Calendar
Type: Bug Report
1
Improve the use of HiddenField inputs' values.
Declined
Last Updated: 01 Nov 2013 13:06 by ADMIN
Completed
Last Updated: 07 Aug 2013 11:53 by ADMIN
Declined
Last Updated: 01 Nov 2013 13:06 by ADMIN
Created by: Andreas
Comments: 1
Category: Calendar
Type: Bug Report
0
From my point of view the RadDatePicker misinterprets date entries in ISO 8601 format.

The result of DateTime.Parse("2013-11-12") is "12. November 2013" for every culture setting (correct).

If i enter "2013-11-12" (yyyy-mm-dd) into the RadDatePicker textbox the result is "11. Dezember 2013" (wrong).

It should be possible to enter a date in the culture specific notation as well as according to ISO standard.

Regards,
Andreas
Completed
Last Updated: 06 Dec 2013 15:25 by ADMIN
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
1 2