Ticket #4796 (closed bug: notabug)
Resizable and draggable with relative position in div container
| Reported by: | subzero66 | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | ui.resizable | Version: | 1.7.2 |
| Keywords: | relative position, parent container | Cc: | |
| Blocking: | Blocked by: |
Description
I defined two divs with resizable/draggable attributes using a relative position within a parent div container. Dragging works just fine. Both inner divs can be dragged within the parent container. When resizing the first div the second div "jumps" to a different position. When looking at the resizable.js I found that the position it being changed to absolute in line 224:
el.css({ position: 'absolute', top: iniPos.top, left: iniPos.left });
Please find attached my example HTML. It's a modified version of the JQuery example code.
Attachments
Change History
Changed 4 years ago by subzero66
-
attachment
resize-relative.html
added
comment:1 Changed 4 years ago by subzero66
I found out how to work around this. You need to declare the container as relative and the inner divs as absolute.
<div id="inner_container" style="position: relative; height: 800px;">
<div id="resizable1" style="position: absolute; top: 100px; left: 100px;>
...
</div>
</div>
comment:2 Changed 4 years ago by joern.zaefferer
- Status changed from new to closed
- Resolution set to invalid
Sounds like this doesn't require any further actions. Please reopen when it actually does.
comment:3 Changed 4 years ago by webPragmatist
Is there a reason that this is hardcoded into this UI plugin? I am having to now add extra markup just to remove this style.
comment:4 Changed 4 years ago by webPragmatist
My apologies for not further investigating this issue. It seems that the resizable widget looks for ui-draggable as a style in order to determine an absolute or relative positioning.
Is this necessary and if so is it documented?
comment:5 Changed 7 months ago by sureshcjc@…
I have similar problem in my case. This issue is either not solved or I have a bug in my code. Please take a look at http://jsfiddle.net/MbYq6/ and advise.


Resizable for relative positioned divs