Status: Unconfirmed
Owner: ----
Labels: Type-Bug Pri-2 Area-Undefined
New issue 139692 by
trujg...@gmail.com: Unable to select item of ListBox
control displayed using Ajax ModalPopupExtender control
http://code.google.com/p/chromium/issues/detail?id=139692
Chrome Version : <Copy from: 'about:version'>
URLs (if applicable) :
Other browsers tested:
Add OK or FAIL after other browsers where you have tested this issue:
Safari 5: NA
Firefox 4.x: OK
IE 7/8/9: OK
What steps will reproduce the problem?
1. Add Button "Show Popup" to show Ajax ModalPopupExtender control
2. Add Ajax ModalPopupExtendar and attach panel "Panel1"
3. Add ListBox control to the panel and assign appropriate data-source
4. Load page on Chrome, click on "Show Popup" to display content of
the "Panel1" and try to select item from the list.
What is the expected result?
I should be able to select items on the ListBox using Mouse Click. I did
try using "Select/Option" HTML CODE to see if that works, but so far no
luck. I was able to use Keyboard Arrow keys to select items.
What happens instead?
ListBox control doesn't work with mouse click and no changes are visible.
Please provide any additional information below. Attach a screenshot if
possible.
Sample code:
<asp:Button ID="btnShowPopup" runat="server" Text="Show Popup"
OnClick="btnShowPopup_Click" />
<asp:Button ID="btnModalPopup" runat="Server" Style="display: none" />
<asp:ModalPopupExtender BackgroundCssClass="ModalPopupBackground"
TargetControlID="btnModalPopup"
Drag="true" PopupDragHandleControlID="Panel1" runat="server"
PopupControlID="Panel1"
ID="ModalPopupExtender6" BehaviorID="Popup1" />
<asp:Panel ID="Panel6" runat="server" CssClass="Popup" Style="display:
none;">
<asp:ListBox ID="ListBox1" runat="server" SelectionMode="Multiple"
Enabled="true">
<asp:ListItem Selected="True" Value="Test1">Test1</asp:ListItem>
<asp:ListItem Selected="False" Value="Test2">Test2</asp:ListItem>
<asp:ListItem Selected="False" Value="Test3">Test3</asp:ListItem>
<asp:ListItem Selected="False" Value="Test4">Test4</asp:ListItem>
</asp:ListBox>
</asp:Panel>