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

Last Character in showing in Search on some machines

1 Answer 17 Views
AutoCompleteBox
This is a migrated thread and some comments may be shown as answers.
Sean
Top achievements
Rank 1
Sean asked on 24 Jul 2017, 06:29 PM

I'm having an issue where on some of the clients when they type in the RadAutoComplete the last character they type isn't registering. I'll attach screen shots from two machines with the same search term and different results. Has anybody else reported this behavior? I'm just loading the search list in code behind it is really straight forward.

<telerik:radautocompletebox runat="server" Style="width: 200px;" id="acbInsured" MaxResultCount="20" DataTextField="CompanyName"     DataValueField="ClientKey">
</telerik:radautocompletebox>

 public void SetInsuredSearchDatasource(IEnumerable<Contact> searchResults)
        {
            acbInsured.DataSource = searchResults.ToArray();
            acbInsured.DataBind();
        }

 

public override void OnLoad()
        {
            SetInsuredSearchDatasource(_reportService.GetInsuredNameSearchResults());

...

 

I'm at a bit of a loss as to why it happens on some but not others (Same browser).

 

 

 

 

 

 

1 Answer, 1 is accepted

Sort by
0
Sean
Top achievements
Rank 1
answered on 27 Jul 2017, 07:09 PM
Anybody with thoughts?
Tags
AutoCompleteBox
Asked by
Sean
Top achievements
Rank 1
Answers by
Sean
Top achievements
Rank 1
Share this question
or