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.
Ok. The focus has been lost on the problem here. The problem is that on any selected item on the control, the dropdown should close. This was the behavior in the original v9.1 that I was using before applying the v9.1 August service release. I need this behavior back. I cannot revert back to the original because of the javascript bug set_enabled bug that got fixed in the August service release.
The dropdown does close every time i select an item - i use the markup you have provided in the original post. Could you tell me exactly which build number you are using?
The build number is 9.1.20091.2087. I will try to create the user control that this is in not to use db stuff so you can see it do what I am talking about.
I am using IE 8 incase it is a browser issue.
Thanks. unfortunately with the code supplied i cannot reproduce this behavior (I just put it in a blank ASPX, and add declaratively a couple of items in the markup) . Every time i select an item, postback is made and the dropdown is closed. Maybe it's related to some more complex scenario where this code is part of some other page or control.
By the way there is a property EnableClosingDropDownOnSelect, but it's true by default, i..e shouldn't make a difference.
Hello Mike,
We are addressing all the WebDropDown issues you are having through several support requests. Please reply to the cases with all your questions and concerns. This way we can investigate the issue in a more efficient way.
Sarita
Here is an example that demonstrates the problems I am having with this control. This example also has the jumping scroll bar issue that I posted about for the following thread. http://forums.infragistics.com/forums/t/31544.aspx
Another issue that I have run into, is that the control pops up the dropdown in odd places if the control is in a div that overflows.
In the example, I left out the ig_res folder because it made the zip larger than the allowed size.