Code:
private void Bind_ddlProduct(RadComboBox p_rcbProduct) { ProductCollection oProductCollection = new ProductCollection(); oProductCollection.DAL_Load(null, null, null, null, null, null, null, null, null, true, false, false, null, null, null, null, null, null); p_rcbProduct.DataSource = oProductCollection; p_rcbProduct.DataTextField = "ProductName"; p_rcbProduct.DataValueField = "ProductID"; p_rcbProduct.DataBind(); p_rcbProduct.AllowCustomText = false; p_rcbProduct.MarkFirstMatch = true; }
<telerik:RadComboBox ID="rcbProduct" runat="server" Width="180" Height="100px" MarkFirstMatch="true" EmptyMessage="Select Product" ClientIDMode="Static" AllowCustomText="false" Filter="None" ChangeTextOnKeyBoardNavigation="true" > </telerik:RadComboBox>The case:
That code is working on my server. Then I build at production, use same Telerik version. After some weeks this case appears:
Look at Product.jpg
at production server, I try to type : 'Eas' then when I try to type next letter 't', the dropdownlist autocomplete stop working and the text field back to blank.
The datasource there is record showing word 'East'
Telerik version attached.