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

Focus

1 Answer 45 Views
Date/Time Pickers
This is a migrated thread and some comments may be shown as answers.
Joseph
Top achievements
Rank 1
Joseph asked on 20 Aug 2015, 11:07 AM

How do you set focus to the Html.Kendo().DatePickerFor in javascript?

 

1 Answer, 1 is accepted

Sort by
0
Konstantin Dikov
Telerik team
answered on 24 Aug 2015, 07:05 AM
Hello Joseph,

For focusing the DatePicker widget with JavaScript  you can get reference to the client object and use its element property, which will return the INPUT element. Once you have reference to the INPUT element you can use its focus method:
var datepicker = $("#datepicker").data("kendoDatePicker");
datepicker.element.focus();

Hope this helps.


Regards,
Konstantin Dikov
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Date/Time Pickers
Asked by
Joseph
Top achievements
Rank 1
Answers by
Konstantin Dikov
Telerik team
Share this question
or