Two issues. If I set my datasource in the c# code behind and I can't seem to get the autocomplete to work. Also If I do set the datasource there can I use client side autocomplete so I don't need to post back everytime I type into the dropdown?
The EnableAutoFilter property can be used to limit the visible items in the dropdown area to those that start with the text entered into the WebDropDown (the textbox above the dropdown list). Here is an example of how to set the properties programmatically for the WebDropDown control wdd.
'setup control wdd.DisplayMode = Infragistics.Web.UI.ListControls.DropDownDisplayMode.DropDown wdd.EnableAutoCompleteFirstMatch = True wdd.EnableAutoFiltering = Infragistics.Web.UI.ListControls.AutoFiltering.Client 'setup data binding wdd.TextField = "Title" wdd.ValueField = "Value" wdd.DataSource = source wdd.DataBind()
Of course, the properties could have been setup in the .aspx file
Note the following...
Advanced Stuff...
More Information: https://ko.infragistics.com/help/aspnet/webdropdown-autocomplete-and-auto-filtering
Hope this helps
ROB