Opened 14 years ago
Closed 10 years ago
#4735 closed bug (wontfix)
Dialog: Unable To Resize Dialog In IE6
Reported by: | jandersen | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.10.0 |
Component: | ui.dialog | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I can't resize the modal dialog box in IE6 for the example at http://jqueryui.com/demos/dialog/#modal. In my testing, it seems to be something about having the bgiframe and the modal options both set to true. That's the only way I've been able to reproduce the problem. Confirmed with others that they experience the same issue.
Change History (7)
comment:1 Changed 13 years ago by
Milestone: | TBD → 1.8 |
---|---|
Priority: | major → critical |
comment:2 Changed 13 years ago by
comment:3 Changed 13 years ago by
Priority: | critical → major |
---|
This works for me. The problem occurs if you move too fast and your cursor leaves the dialog and hovers over the overlay. I'm not sure what's causing that problem.
comment:4 Changed 13 years ago by
See: http://blog.oovch.net/article/143202683.html (bgiframe leaves room for improvement.)(by oov, in Japanese)
Abstract: (The misunderstanding is caused by watanabe)
- bgirame makes an iframe behind the dialog.
- The iframe is as big as the window.
- The mouse event to shrink is captured by the dialog.
- The mouse event to increase is captured by the iframe.
- workaound: change bgiframe to make a div element over the iframe.
Before:
div class="ui-widget-overlay" ... iframe class="bgiframe" tabindex="-1" ... <- original. div class="ui-dialog" ...
After:
div class="ui-widget-overlay" ... div class="bgiframe" ... <- changed. iframe tabindex="-1" ... <- as big as parent element. div ... <- as big as parent element. div class="ui-dialog" ...
comment:6 Changed 10 years ago by
Milestone: | 1.9.0 → 1.10.0 |
---|
comment:7 Changed 10 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Summary: | Unable To Resize Dialog In IE6 → Dialog: Unable To Resize Dialog In IE6 |
We are dropping support for IE6 in 1.10
I can shrink it, but not increase its size.