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
115
After select WebDropDown element, I can't focus on any other control in the page.
posted

I have a problem with WebDropDown, when I open the dropdown list and check or uncheck an item, I can't focus on any other control in the page, the focus continues in the WebDropDown input. Only clicking twice on another control, the focus is placed in this control.

Code sample:


<form id="form1" runat="server">
<ig:WebScriptManager ID="WebScriptManager1" runat="server"></ig:WebScriptManager>

<div>
<ig:WebDropDown CssClass="multipleSelect" runat="server" ID="gridid"
EnableClosingDropDownOnSelect="false" EnablePaging="false" Width="100%"
EnableMultipleSelection="true" MultipleSelectionType="Checkbox"
Button-ImageUrl="~/App_Themes/Default/Img/arrow-pointing-down.png"
DropDownContainerWidth="100%" Button-PressedImageUrl="~/App_Themes/Default/Img/arrow-pointing-down.png"
Button-DisabledImageUrl="~/App_Themes/Default/Img/arrow-pointing-down.png"
Button-HoverImageUrl="~/App_Themes/Default/Img/arrow-pointing-down.png"
DropDownContainerHeight="100%">
<Items>
<ig:DropDownItem Selected="false" Text="" Value="" Visible="False" Enabled="False" />
<ig:DropDownItem Selected="false" Text="c1" Value="c1" />
<ig:DropDownItem Selected="false" Text="c2" Value="c2" />
</Items>
</ig:WebDropDown>
<br />
<asp:TextBox type="text" ID="textbox1" runat="server" CssClass="input" BackColor="#f09"></asp:TextBox>

</div>
</form>


My Infragistics version is v15.2.20152.2125

Waiting for your answer,

best regards.