All Products
Demos
Pricing
Services
Blogs
Docs & Support
Search
Shopping cart
Login
Contact Us
Get A Free Trial
close mobile menu
Telerik Forums
/
UI for ASP.NET AJAX Forum
/
Input
/
RadDateTime picker - client side - get_wrapperElement
Cancel
Telerik UI for ASP.NET AJAX
Resources
Buy
Try
Feed for this thread
3 posts, 1 answers
Roland
156 posts
Member since:
Feb 2009
Posted 01 Feb 2010
Link to this post
Hello,
The docs say that raddatepicker has
get_wrapperElement
function.
Is it missing ? or is this only docs error ?
Answer
Shinu
17764 posts
Member since:
Mar 2007
Posted 02 Feb 2010
Link to this post
Hello Rolland,
The
get_wrapperElement
() is
method of the
RadDateInput
client-side object
which returns the DOM element for the <div> wrapper element. You could access the DateInput of RadDateTimePicker as shown below.
JavaScript:
function
enableIt() {
var
dtPicker = $find(
"<%=RadDateTimePicker1.ClientID%>"
);
var
wrapperElement = dtPicker.get_dateInput().get_wrapperElement();
}
-Shinu.
Roland
156 posts
Member since:
Feb 2009
Posted 02 Feb 2010
Link to this post
Thanks, I must have missed that raddateinput :)
Back to Top
Close