Side navigation
#2305 closed bug (fixed)
Opened February 08, 2008 11:08AM UTC
Closed March 14, 2008 03:45PM UTC
svn draggable: containment fails if grid set
Reported by: | tm | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.2.3 |
Component: | ui | Version: | 1.2.2 |
Keywords: | svn draggable containment grid | Cc: | |
Blocked by: | Blocking: |
Description
The following code illustrates the bug:
<div style="position:absolute;top:50px;left:100px;width:210px;height:210px;background:#aaa"> <div id="test" style="position:absolute;left:0px;top:0px;width:40px;height:40px;background:#eee"></div> </div> <script type="text/javascript"> $('#test').draggable({containment:'parent', grid:[40,40]}); </script>
Note that placing grid plugin(in draggable.ext.js) before containment plugin is not correct solution, because then grid can be lost.
This can only be solved by implementing a kind of priority stack. I will see what I can do, but it'll take some time.