#8002 closed bug (worksforme)
IE8 Dialog Resize issue
Reported by: | imran7841 | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.dialog | Version: | 1.8.13 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Following code does not resize the dialog box in IE8:
this.element.show().css({
width: "auto", minHeight: 0, height: 0
}); if (a.minWidth > a.width) a.width = a.minWidth; b = this.uiDialog.css({
height: "auto", width: a.width
}).height();
This code exists in jquery.ui.js under _size() function. The version is jQuery UI Dialog 1.8.13.
Due to this bug, the dialog box does not display properly.
Change History (3)
comment:1 follow-up: 2 Changed 11 years ago by
Component: | ui.core → ui.dialog |
---|---|
Resolution: | → worksforme |
Status: | new → closed |
comment:2 Changed 11 years ago by
Replying to scott.gonzalez:
This works fine for me. Please provide a reduced test case if you continue having a problem.
This issue only occurs in IE8. Have u have checked in IE8? put alert(this.uiDialog.height()); before the first line and after the last line of above code. The height does not change.
comment:3 Changed 11 years ago by
Yes, I tried in IE 8. If this were actually broken, we'd be getting lots of complaints. Did you provide a reduced test case?
This works fine for me. Please provide a reduced test case if you continue having a problem.