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
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
That didn't work and kills any type post back. To do a full post back on the control, you would set the postback flag to "on" instead of "async". if autoPostBack is false, then no type of postback occurs.