I'm using a WebDropDown and posting back with OnSelectionChanged. The AutoComplete is no longer working properly because OnSelectionChanged causes a postback every time you type a character into the WebDropDown. How do I make AutoComplete work properly when using OnSelectionChanged?
<ig:WebDropDown ID="wdd_AddAgent" Width="250px" OnPreRender="ClientFiltering_PreRender" EnableAutoCompleteFirstMatch="false" DropDownContainerHeight="300px" EnableViewState="true" EnableAutoFiltering="Server" OnSelectionChanged="Populate_Default_Commission" AutoPostBackFlags-SelectionChanged="On" runat="server"></ig:WebDropDown>
you can set the AutoSelectOnMatch property to false. It has been recently added to address similar scenarios.
Thank you,
Angel
Hi, I've added AutoSelectOnMatch="false" however SelectionChanged still fires on every time I type.
I'm have the exact same problem you described here. Did you find a solution? Appreciate the help.
I am experiencing this same issue. In my situation, (a U.S. state drop down list) the post back occurs (to restrict a city dropdown list) immediately after the first keystroke - and the entry textbox area of the dropdown control has only the first character displayed in it. Ideally, the dropdown list should allow the user to type and if a match exists based upon what the user has typed and the user tabs away from the control, that item should simply be selected. However, this does not occur with this control. Is there anything specific I should do to get the dropdown list to behave like a standard dropdown list? (i.e. above desired behavior)
Thanks,