Search and Top Navigation
#2944 closed bug (worksforme)
Opened June 03, 2008 09:05PM UTC
Closed June 04, 2008 06:00AM UTC
Last modified May 26, 2010 05:39PM UTC
SELECT-Tag shining through Dialog in IE6
Reported by: | r.riedl@gmx.de | Owned by: | scottgonzalez |
---|---|---|---|
Priority: | major | Milestone: | 1.5 |
Component: | ui.dialog | Version: | 1.5rc1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hello,
try the following in IE6:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> <script> $(document).ready(function(){ $("#example").dialog( {position: [0,0]} ); }); </script> </head> <body> <link rel="stylesheet" href="http://dev.jquery.com/view/trunk/themes/flora/flora.all.css" type="text/css" media="screen" title="Flora (Default)"> <script type="text/javascript" src="http://dev.jquery.com/view/trunk/ui//ui.core.js"></script> <script type="text/javascript" src="http://dev.jquery.com/view/trunk/ui/ui.dialog.js"></script> <script type="text/javascript" src="http://dev.jquery.com/view/trunk/ui/ui.resizable.js"></script> <script type="text/javascript" src="http://dev.jquery.com/view/trunk/ui/ui.draggable.js"></script> <form id="testform"> <SELECT id="testselect" name="testselect" style="width:200px" > <OPTION value="17">17</OPTION> <OPTION value="18">18</OPTION></SELECT> </form> </body> <div id="example" class="flora" title="This is my title">I'm in a dialog!</div> </html>
The Combobox is overlaid over the Dialog. Maybe there is a workaround??
Bye,
Reinhard
PS: You are doing a great job!
Attachments (0)
Change History (1)
Changed June 04, 2008 06:00AM UTC by comment:1
resolution: | → worksforme |
---|---|
status: | new → closed |
You need to use the bgiframe option (set it to true), this also requires including the bgiframe plugin (not part of UI).
Thanks for the compliment :-)