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

RadComboBox autocomplete does not working at another computer

1 Answer 66 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
mudzakkir
Top achievements
Rank 1
mudzakkir asked on 11 Jun 2015, 04:11 AM

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.

1 Answer, 1 is accepted

Sort by
0
Colleen
Telerik team
answered on 15 Jun 2015, 08:28 PM

Hi,

It appears that you do not have a license or active trial on your account.

In order to access our support ticketing system you will need to have one of these.

Please let me know if you are interested in purchasing and I can connect you with your representative. 

Regards,
Colleen
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
ComboBox
Asked by
mudzakkir
Top achievements
Rank 1
Answers by
Colleen
Telerik team
Share this question
or