Hello, i am trying to use the allowcustomtext feature on the radcombo box, but whether i set the property in the code behind or the code front it fails to work. All other properties appear to work OK. When I tried setting the property in the code behind under "selected index change" obviously same results. Basically when i attempt to select a word(s) it selects everything and in order to modify the suggested value you have to use the "end" key then scroll left, end users are complaining.. please help.
attempt using code behind
<telerik:RadComboBox ID="cbActivity" runat="server" Skin="Windows7" EnableLoadOnDemand="true" MarkFirstMatch="true" EnableVirtualScrolling="True" DataSourceID="SqlDataSource1" DataTextField="Activity" DataValueField="Activity" EmptyMessage="Enter New Activity or Select Pre-Existing" style="margin-bottom: 0px" Width="500px" AllowCustomText="true" HighlightTemplatedItems="true" ShowMoreResultsBox="true"> </telerik:RadComboBox>protected void cbActivity_SelectedIndexChanged(object o, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e) { cbActivity.AllowCustomText = true; }