Hi, I have the following code:
When I input character "S" to the RadComboBox, it select "Sony" and append "ony" to textbox. After that, if I input "a" he should select "Samsung". It works on IE or FF, but not on Chrome 5. On Chrome after I input "a" he insert it between "S" and "ony", so I have "Saony".
<% rcb.DataSource = new[] { new { ID = 1, Value = "Sony" }, new { ID = 2, Value = "Samsung" }, }; this.Page.DataBind(); %> <telerik:RadComboBox ID="rcb" runat="server" MarkFirstMatch="true" AllowCustomText="true" DataTextField="Value" DataValueField="ID" />