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

Update DateTimePicker Input Box

1 Answer 61 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Kyle Jones
Top achievements
Rank 1
Kyle Jones asked on 30 Jul 2009, 01:01 PM
Hey,

I am trying to use a hyperlink to update a DateTimePicker via javascript.  I saw a limited number of methods that you can use in javascript to interact with a DateTimePicker but not one that will let me set the input spot.  Can you help me out please?


Kyle

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 31 Jul 2009, 09:18 AM
Hi Kyle,

You could use the following client side code in order to set value for RadDateTimePicker from client side.

ASPX:
 
<asp:HyperLink ID="HyperLink1" runat="server" onmouseover="SetTime();">HyperLink</asp:HyperLink> 
<telerik:RadDateTimePicker ID="RadDateTimePicker1" runat="server"
</telerik:RadDateTimePicker> 

JavaScript:
 
<script type="text/javascript"
function SetTime() 
    var datetimepicker = $find("<%= RadDateTimePicker1.ClientID %>"); 
    dt = new Date(); 
    datetimepicker.set_selectedDate(dt)
</script> 

Checkout the following link to know more about the client side methods of the RadDateTimePicker client-side object.
Client-Side Basics
RadDateTimePicker Client Object

-Shinu.
Tags
Calendar
Asked by
Kyle Jones
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or