Modify ↓
Ticket #1749 (closed bug: fixed)
resizable grows too tall in IE when scrolled
| Reported by: | rworth | Owned by: | braeker |
|---|---|---|---|
| Priority: | major | Milestone: | 1.2.2 |
| Component: | ui | Version: | 1.2.1 |
| Keywords: | resizable scroll | Cc: | |
| Blocking: | Blocked by: |
Description
Steps to reproduce
In Internet Explorer
- Open http://dev.jquery.com/view/trunk/plugins/ui/tests/dialog.html
- Launch a dialog such as dialog-options-minHeight-40
- Resize taller with -s handle
- Close dialog
- Scroll page down a bit
- Repeat steps 2 and 3
Dialog size jumps extra vertically by page scroll amount
Change History
comment:6 Changed 7 months ago by anonymous
If this bug reveals itself only in MSIE, shouldn't there be check for it? Something like
bugfix for http://dev.jquery.com/ticket/1749
if ($.browser.msie && (el.is('.ui-draggable') (/absolute/).test(el.css('position')))) { el.css({ position: 'absolute', top: iniPos.top, left: iniPos.left });
}
Because in Chrome I'm having troubles with that relative->absolute transition - it causes the control to ignore it's parent element scrolling.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.
