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
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
This is expected behavior, since it is server control. If you want entirely client side based calendar, please use KendoUI
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.
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.
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
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
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
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.