This is a migrated thread and some comments may be shown as answers.

upgrade the RadTimePicker from asp.net Q3 2007 to Asp.net ajax Q1 2008

1 Answer 34 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Hrushikesh Mokashi
Top achievements
Rank 1
Hrushikesh Mokashi asked on 16 Jul 2008, 10:04 AM
Here is the code for RadTimePiker in javasvcript
('timePikerSelectedTime' is RadTimePiker picker)
 var selTime = window['timePikerSelectedTime'];                               
  selTime.DateInput.Disable();

I am upgrading my control from asp.net Q3 2007 to Asp.net Ajax 2008.

I didn't get the DateInput property in new version.

How can i chage the above code to work my application.

1 Answer, 1 is accepted

Sort by
0
Sebastian
Telerik team
answered on 16 Jul 2008, 11:11 AM
Hello Hrushikesh,

How to migrate your client code implementation to the ASP.NET AJAX version of RadCalendar you can learn from the following topic in the online documentation:

http://www.telerik.com/help/aspnet-ajax/calendar_overviewmigrating.html

Hence for your particular case the snippet should be modified as follows:

var selTime = $find(''timePikerSelectedTime');                               
selTime.get_dateInput().disable();


Note that each control from the ASP.NET AJAX suite has migration article in the help which facilitates the transition between its Classic and ASP.NET AJAX version.

Greetings,
Stephen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
General Discussions
Asked by
Hrushikesh Mokashi
Top achievements
Rank 1
Answers by
Sebastian
Telerik team
Share this question
or