AjaxControlToolKit question

AjaxControlToolKit question

am 29.01.2008 06:59:00 von abcd

I am using AjaxControlToolKit calender extender. When I select the date from
calender control then the date is properly shown to the text box
(i.e.TargetControlID). But I dont get the cursor there in the textbox. How do
I get the cursor in the textbox once the date is selected. What trick should
I need to do.

-->

TabIndex="10" onKeyPress="return checkEnter(event)" />
Calendar <br />
Selection
runat="server" PopupButtonID="calendaricon1"
TargetControlID="RA_departing_date">

RE: AjaxControlToolKit question

am 30.01.2008 00:53:26 von mily242

Howdy,


runat="server" PopupButtonID="calendaricon1"
TargetControlID="RA_departing_date"
OnClientDateSelectionChanged="function(sender, e) {
sender.get_element().focus(); }">


Hope it helps
--
Milosz


"abcd" wrote:

> I am using AjaxControlToolKit calender extender. When I select the date from
> calender control then the date is properly shown to the text box
> (i.e.TargetControlID). But I dont get the cursor there in the textbox. How do
> I get the cursor in the textbox once the date is selected. What trick should
> I need to do.
>
> -->
>
> > TabIndex="10" onKeyPress="return checkEnter(event)" />
> Calendar <br />
> Selection
> > runat="server" PopupButtonID="calendaricon1"
> TargetControlID="RA_departing_date">
>

>