Hello,
I have this HTML code (for RadAutoCompleteBox) in my aspx page (WebForms):
<telerik:RadAutoCompleteBox RenderMode="Lightweight" runat="server" ID="acbClient" EmptyMessage="Client" OnClientDropDownItemDataBound="RemoveDuplicated" MaxDropDownHeight="100" DataTextField="RagSoc" DataValueField="CodCli" InputType="Token" DropDownHeight="150px" CssClass="RadAutoCompleteBoxPopup_Default" CollapseAnimation-Type="OutElastic" Width="385"></telerik:RadAutoCompleteBox>
and this in code-behind (VB.NET):
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load If GetClient(dtClient) = True Then acbClient.DataSource = dtClient acbClient.DataBind() End IfEnd Sub
but when I click some letters (for example, "ac" like in the screenshoot),
seems that don't find the exact matching.
Why this happens?
Thanks a lot in advance.
Luis
