When I use asp DropDownList and populate it with some items (a, ab, abc, b, ba etc) I click to open drop down list and type ‘a’ on keyboard selection goes to first item that begins with ‘a’ and when I type ‘ab’ it goes to ‘ab’.
But in telerik RadComboBox when I type ‘ab’ it goes to the first item that begins with ‘b’ and not to ‘ab’.
Is it possible to fix this somehow on RadComboBox?
<telerik:RadComboBox ID="rcb_Products" runat="server" DataTextField="ProductName" DataValueField="ProductId"
Width="100%" Skin="Windows7">
</telerik:RadComboBox>
...
this.rcb_Products.DataSource = productsList;
this.rcb_Products.DataTextField = "Text";
this.rcb_Products.DataValueField = "Value";
this.rcb_Products.DataBind();
...
Please write like this:
Only add this to your design view:
Filter=”StartsWith”