#3074 closed bug (fixed)
Resizable jumps when in scrolled container.
Reported by: | Owned by: | eduardo | |
---|---|---|---|
Priority: | minor | Milestone: | 1.5.2 |
Component: | ui.resizable | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When a resizable is in a containment div which has been scrolled down or right, the resizable jumps to the top of the containment.
I was able to get around this simply by adding the scrollTop() and scrollLeft() of the containment to the css of the resizable in a custom resize function like this: function(e,ui){
var c = ui.options.containment; $(this).css({top: ui.position.top + c.scrollTop() + "px", left: ui.position.left + c.scrollLeft() + "px",
width: ui.size.width + "px", height: ui.size.height + "px"}); }
Attachments (1)
Change History (3)
comment:1 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 15 years ago by
Milestone: | → 1.5.2 |
---|
Changed 14 years ago by
Attachment: | resizable_3074.patch added |
---|
Note: See
TracTickets for help on using
tickets.