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

Combobox filter not working

1 Answer 44 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Balasubramaniyan
Top achievements
Rank 1
Balasubramaniyan asked on 29 Nov 2013, 11:07 AM
Hi,

I have an combobox with filter="startswith"
when the page loading initially the filter is working fine.once we select the value from that filter and hit enter or remove the selected value then dropdown is not loading.
what should i do this to solve the problem.
awaiting your response
thanks in advance.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 29 Nov 2013, 11:39 AM
Hi Balasubramaniyan,

Unfortunately I couldn't replicate the issue at my end. Please have a look into the sample code which works fine at my end.

ASPX:
<telerik:RadComboBox ID="RadComboBox1" AllowCustomText="true" runat="server" DataSourceID="SqlDataSource1"
    DataTextField="ContactName" EmptyMessage="Search for people..." Filter="Contains">
</telerik:RadComboBox>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
    SelectCommand="SELECT [ContactName] FROM [Customers] " />

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