Side navigation
#2539 closed bug (fixed)
Opened March 18, 2008 01:03PM UTC
Closed March 25, 2008 03:10PM UTC
Last modified March 15, 2012 02:02AM UTC
draggable - grid: [x,y] and containment incompatible
Reported by: | atreyas | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.2.4 |
Component: | ui | Version: | 1.2.3 |
Keywords: | draggable, grid, containment | Cc: | |
Blocked by: | Blocking: |
Description
If I use the grid[x,y] property for a jQuery draggable object is not able to contain itself to a containment.
e.g.
.draggable ({ helper: 'original', grid: [50,50], containment: 'parent' });
does not contain the element to the parent div tag
On the other hand, the following are working:
.draggable ({ helper: 'original', //grid: [50,50], containment: 'parent' });
contains it to the div element.
Attachments (0)
Change History (3)
Changed March 25, 2008 03:10PM UTC by comment:1
resolution: | → fixed |
---|---|
status: | new → closed |
Changed April 06, 2008 06:09AM UTC by comment:2
Yup, thanks. Works for me. Thanks!
Changed July 23, 2011 09:04PM UTC by comment:3
You saved me! I've been looking for a solution all day long. The problem was because the div's wasn't moving to their previous place (revert sux). I found out that this happened only if I've set grid option. It didn't stuck to the previous grid possition but somewhere else.
This is fixed in the latest trunk version. However, it's not quite perfect, because at the edges, the grid is not respected. I hope this solves your issue anyway!