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

Easy ?: Dropdown on Type

3 Answers 56 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
James
Top achievements
Rank 1
James asked on 20 Feb 2012, 03:23 PM
Hi,

This is probably an easy question.  However, I have searched the forums and documentation, and I have not yet found an answer.

Here is the goal:  I would like my RadCombobox to dropdown (if not already dropped) when the user starts typing.  

More specifics: I do have the combobox referencing itself in the RadAjaxManager, so the box drops down when the user mouses to it.  However, if they user "tabs" to it, it doesn't drop down.  So, as they type, they cannot see the results of the "search" in the dropdown.

Thanks for any help that you can provide.

Jim

3 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 21 Feb 2012, 06:11 AM
Hello,

One suggestion is to show the dropdown on OnClientKeyPressing event.
JS:
function OnClientKeyPressing(sender, args)
 {
    sender.showDropDown();
 }

Thanks,
Princy.
0
James
Top achievements
Rank 1
answered on 22 Feb 2012, 03:37 AM
Princy,

As always, thanks for the great response.

A while back, I asked how to do work with you directly, and you sent me a contact.  Is that contact still valid?  Could you resent?

Thanks,

Jim
0
James
Top achievements
Rank 1
answered on 22 Feb 2012, 05:20 PM
Princy,

Thanks again for your answer.  I modified it a little bet to avoid the combo from flickering on each key press.

I did so based on this post:

http://www.telerik.com/community/forums/aspnet-ajax/combobox/dropdown-not-expanding-on-text-change.aspx

Thanks again!

Jim

Tags
ComboBox
Asked by
James
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
James
Top achievements
Rank 1
Share this question
or