Search and Top Navigation
#4271 closed bug (fixed)
Opened March 04, 2009 02:02AM UTC
Closed July 18, 2009 04:55PM UTC
Buttons disappear after dragging dialog
Reported by: | aflynt | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.8 |
Component: | ui.dialog | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
With svn -r 2200 trunk the buttons area of the dialog disappears after dragging. This behavior can be seen in IE7 Firefox 3.0.6 and Safari 4 Beta.
Attachments (0)
Change History (4)
Changed March 05, 2009 03:26PM UTC by comment:1
Changed March 27, 2009 11:28PM UTC by comment:2
milestone: | TBD → 1.8 |
---|
Changed June 05, 2009 08:13PM UTC by comment:3
Are there any known workarounds for this bug?
Changed July 18, 2009 04:55PM UTC by comment:4
resolution: | → fixed |
---|---|
status: | new → closed |
version: | → 1.7.2 |
Confirmed in 1.7.1 and 1.7.2, but works in trunk.
Note that this only occurs when you define buttons and explicitly set a height. For example adding 'height: 100' to the dialog.html visual test:
// Dialog with Buttons
var dlgbuttons = $("#dlgbuttons").dialog({
autoOpen: false,
width: 600,
height: 100,
buttons: {
Ok: function() {},
Cancel: function() {}
}
});