Declined
Last Updated: 03 Sep 2014 07:26 by ADMIN
We have a requirement were the users can select multiple range of dates from the Calendar control.The selected range of dates will be saved as "StartDate" and "EndDate" in the SQL database. In the Calendar control we have "RangeSelectionStartDate" and  "RangeSelectionEndDate " ,but this doesn't allow the user to select multiple range of dates .When the dates in the range are selected any other date selection deselects all dates from range selection.

It would be nice if we have the feature of selecting multiple range of dates in the upcoming release.


Regards
Karthik
Declined
Last Updated: 02 Sep 2014 14:56 by ADMIN
ClientSide binding feature on radcalendar. According to support answer, if I want to use a day template and client side binding, it can't be done. I hope this can be the feature in the next release.

Support ticket:
http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=836201
Won't Fix
Last Updated: 04 Aug 2015 10:31 by ADMIN
This is expected behavior, since it is server control. If you want entirely client side based calendar, please use KendoUI
Declined
Last Updated: 21 Apr 2022 11:52 by ADMIN
Created by: Sanjay Gupta
Comments: 1
Category: Calendar
Type: Feature Request
0

			
Completed
Last Updated: 20 Jul 2015 14:14 by Steve
Completed
Last Updated: 17 Sep 2015 13:22 by ADMIN
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.
Declined
Last Updated: 26 May 2014 13:57 by ADMIN
ADMIN
Created by: Sebastian
Comments: 2
Category: Calendar
Type: Feature Request
5
AJAX controls like RadTextBox and RadComboBox have label as one of their properties.
However RadDatePicker doesn't have a label. Although it is possible to add a label to a RadDatePicker, the results are far from what you can see in RadTextBox and RadComboBox.
Completed
Last Updated: 14 Oct 2015 10:51 by ADMIN
Unplanned
Last Updated: 15 Oct 2020 15:12 by ADMIN
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
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: 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
Declined
Last Updated: 21 Jun 2022 21:36 by ADMIN
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.