Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
775
enableondemand = true the dropdown grid is not refreshing
posted

Hi ,

In my application i am using webdropdown control to implement auto suggest text box. I bind the data from database in code behind like below

List<Employee> empList = empdbcall();
wddemp.DataSource = empList ;
            wddemp.ValueField = "ID";
            wddemp.TextField = "Name";
            wddemp.DataBind();

and html

<ig:WebDropDown ID="wddemp" runat="server" Width="200px" CssClass="webDropDown"
                                             EnableAutoCompleteFirstMatch="false" AutoSelectOnMatch="false"   TextField="Name" ValueField="id"
                                             EnableAutoFiltering="Server"  EnableLoadOnDemand="true"  LoadingItemsMessageText="Loading"
                                            AutoFilterQueryType="StartsWith" AutoFilterResultSize="15" AutoFilterSortOrder="Ascending" >
                                            <DropDownItemBinding TextField="Name" ValueField="id" />

The issue is when i enter letters it is making a server call but the list below is not getting refreshed.

The same implementation is working in the other simple web page . but it is not working in required page.

How can we debug what is the issue.

and also suggest what is the best option to implement auto suggest textbox.