Hallo,I'm using Infragistics ASP.NET Release 13.1.20131.2242.I want to use the WebDropDown-Control with multiselection.But after selection an item, the DropDown-List close.
It seems the EnableClosingDropDownOnSelect property will be ignored.
I use following code.
ASPX:<ig:WebDropDown ID="WebDropDown1" runat="server" Width="200px" EnableAnimations="False" EnableClosingDropDownOnSelect="False" EnableMultipleSelection="True" NullText="empty"></ig:WebDropDown><asp:label runat="server" text="Label" ID="Label1"></asp:label><br /><asp:Button ID="Button1" runat="server" Text="Button" />
CodeBehind in VB.Net CLR 4.0:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Page.IsPostBack = False Then Dim dropItem As DropDownItem For i = 1 To 10 dropItem = New DropDownItem("Value " & i, i) WebDropDown1.Items.Add(dropItem) Next End If End Sub Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim dropItem As DropDownItem Label1.Text = "" For Each dropItem In WebDropDown1.Items If dropItem.Selected Then Label1.Text &= dropItem.Text & " " End If Next End Sub
Hello Und,
Issue "166043: The DropDown doesn't collapse when EnableAnimations="false"" has been addressed in service release versions ASP.NET_14.1.20141.1015, ASP.NET_13.2.20132.2109, ASP.NET_13.1.20131.2271.
The following additional notes have been provided regarding this issue:
This service release is now available under your account at the Infragistics Website. To download the service release, log in to ‘Account’ and select ‘Keys & Downloads’. Select the appropriate tab for this product; then the license key. The available service releases (Hot Fixes) should now be listed on the page.
Please let me know if you have any further questions regarding this matter.
I've found an workaround by testing on my own.
Set the EnableDropDownAsChild property to false.
Maybe this helps for a while.
Hi
I have this issue too. Sorry to pester, but when can we expect a fix? I'm delaying releasing a new version of our own site until this has been fixed.
Is there a way to revert back to an earlier version of the WebDropDown control that doesn't have this bug?
Thank you for posting to Infragistics forums.
This issue has been reported and logged internally with the ID 166043. I have linked you case to this development ID. The next step will be for a developer to review my investigation and confirm my findings or to offer a fix, or other resolution.
I will update you with any new information after the review.
Please let me know if you need more information.