Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
How to set focus to AutoCompleteBox?
I tried the following but it doesn't work:
var autoComplete = $find("<%= RadAutoCompleteBox1.ClientID %>"); autoComplete.focus();
Error: autoComplete.focus is not a function
I figured it in case someone else is in the same trouble:
var autoComplete = $find("<%= RadAutoCompleteBox1.ClientID %>"); autoComplete._inputElement.focus();