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

Blank list when tabbing into RadComboBox

1 Answer 39 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
digitall
Top achievements
Rank 1
digitall asked on 14 Sep 2009, 12:57 AM
I have a page with 10 RadComboBoxes with the auto-complete functionality setup. When I am in one combobox I can type and select everything perfectly. If I hit "tab" though, the next control gets focus but if you start typing the list doesn't autocomplete until I hit the down arrow. Is there a way to make it autocomplete automatically upon focus?

1 Answer, 1 is accepted

Sort by
0
Yana
Telerik team
answered on 14 Sep 2009, 10:37 AM
Hello Scott,

I suggest you subscribe to OnclientFocus event of RadComboBox and in its handler:

<script type="text/javascript"
 
    function clientFocus(sender, args) { 
        sender.showDropDown(); 
    } 
</script> 

All the best,
Yana
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
ComboBox
Asked by
digitall
Top achievements
Rank 1
Answers by
Yana
Telerik team
Share this question
or