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

Combobox - onfocus issue

1 Answer 54 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Saumin
Top achievements
Rank 2
Saumin asked on 04 Feb 2009, 11:21 PM
Hi,
Basically I have implemented combobox with autocomplete, load on demand and virtualscrolling using web service. It is working fine. I am allowing  user to type 3 characters before there is any lookup. But the problem is that, when the user clicks on combobox (to start typing), an empty dropdown shows up. How can i stop this? Please let me know

Thanks!

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 05 Feb 2009, 07:18 AM
Hello Saumin,

You can set the ShowDropDownOnTextBoxClick property to false as shown below:
aspx:
   <telerik:RadComboBox ID="RadComboBox1" ShowDropDownOnTextboxClick="false" EnableVirtualScrolling="true" 
 DataSourceID="SqlDataSource1" DataTextField="Cities" MarkFirstMatch="true" 
 AllowCustomText="true" EnableLoadOnDemand="true"   runat="server">  
   </telerik:RadComboBox>  

Thanks
Princy.
Tags
ComboBox
Asked by
Saumin
Top achievements
Rank 2
Answers by
Princy
Top achievements
Rank 2
Share this question
or