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
410
Dropdown reappears after selecting an item
posted

Hello,

After selecting an item in the webdropdown, the dropdown reappears.  Here is the code for the control.

 <ig:WebDropDown ID="ctlOrderRuns" runat="server" Width="200px"
 AutoPostBack="True" AutoSelectOnMatch="False" DisplayMode="DropDownList"
 EnableAnimations="False" EnableAutoCompleteFirstMatch="False"
 onselectionchanged="ctlOrderRuns_SelectionChanged1">
 <AutoPostBackFlags SelectionChanged="Async" />
 <clientevents />
</ig:WebDropDown>

If I select an item and the click on the dropdown box arrow, then the dropdown will not reappear.

Is there somehting I need to turn off to get the control to select an item when clicked?

It did work before I applied the 9.1 August service release that applied; however, I need it so I can disable the control throw javascript.

Later,

Mike

Parents
No Data
Reply
  • 24671
    posted

    Hi Mike,

     

    This probably happens because you have AutoPostBack=True. This will enable full postback for both ValueChanged and SelectionChanged. If you already have it for SelectionChanged set to Async, you can set AutoPostBack=False.

    Thanks,

    Angel

Children