JQuery UI Draggable: Exceed Containment On One Side
Solution 1:
Well that expandParent function is not going to work because container boundaries has been set by JQuery UI and it wont be updated until you release the mouse .
So i can think of two solution here one is elegant and the other is tricky
Obviously the elegant solution would be writing your own containing method which is free at bottom .
But now i have a tricky solution by using a dummy parent element and set its height to a large value like 1000 or height of window and then set overflow hidden attribute for real parent.
Here is my solution :
<div id="parentElement">
<div id="dummy-parent">
<div id="dragElement" class="dragClass">
<p>Drag me around!</p>
</div>
</div>
</div>
function expandParent(parentName, childName) {
var dragEl = $(childName);
var parentEl = $(parentName);
var dragElHeight=dragEl.height();
if(parentEl.height() <= dragElHeight) {
parentEl.height(dragElHeight);
}
}
You have to modify the code based on your application i just gave you the idea
Solution 2:
Looks like inside JQuery UI they keep the information of the parent at the beginning of the drag, so even if you change the size it will still restrict the drag.
To fix that you can set your own containment bounding box.
$("#dragElement")
.draggable({
cursor : "move",
scroll : false,
containment : [20, 20, 400+20, 1000],
drag : function(event, ui) {
expandParent("#parentElement", "#dragElement");
}
})
.resizable({
containment : "parent",
resize : function(event, ui) {
expandParent("#parentElement", "#dragElement");
}
});
function expandParent(parentName, childName) {
var dragEl = $(childName);
var dragElTop = parseInt(dragEl.css("top"), 10);
var dragElHeight = parseInt(dragEl.css("height"), 10);
var dragElBottom = dragElTop + dragElHeight;
var parentEl = $(parentName);
var parentElBottom = parseInt(parentEl.css("height"));
if(parentElBottom <= dragElBottom + 20) {
parentEl.css("height", dragElBottom+20);
}
}
With the above code, it will allow the resize of the parent up to 1000+20 in height. You can try the above code here (JSFiddle).
If needed to do a dynamic container, at the beginning (and in the resize method), set the new container with the correct BoundingBox.
var p = $("#parentElement");
var dragWidth = parseInt($("#dragElement").css('width'));
var left = p[0].offsetLeft;
var top = p[0].offsetTop;
var width = parseInt(p.css("width"), 10)-dragWidth;
var containment = [left, top, width+left, 1000];
Yeah, I know the solution is kind of hackish.. but anyway, I just updated the JSFiddleThis solution may not be to calculate and re-set dynamically the size of the container. Just wanted to have a JSFiddle working nicely.
Solution 3:
$("#dragElement")
.draggable({
cursor : "move",
containment : '#Container',
drag : function(event, ui) {
var growAmount = 10;
var cont = $('#Container');
var item = $(ui.helper);
var itemOffset = item.offset();
itemOffset.bottom = itemOffset.top + dProps.item.height();
var contOffset= cont.offset();
contOffset.bottom = contOffset.top + cont.height();
if(itemOffset.bottom >= contOffset.bottom){
var inst = item.draggable("instance");
inst.containment = [inst.containment[0], inst.containment[1], inst.containment[2], inst.containment[3] + growAmount];
cont.height(parseInt(cont.height()) + growAmount);
}
}
});
Solution 4:
Ok, so this is possible, but not without shinanigans...
Basically the containment array parameter accepted by jQuery's draggable, will only constrain to the values provided. Normally, the array relates to [x1, y1, x2, y2], so if we only provide the first 3, and leave the 4th undefined, then the bottom will not be constrained.
However, this means that we need to manually provide the left, top, and right values. Top and left are easy enough, but right must be calculated:
var scrollbarWidth = 22;
var container = $('#my-container');
var cOffset = container.offset();
var cRight = cOffset.left + c.outerWidth() - $('#my-draggable').outerWidth() - scrollbarWidth;
$('#my-draggable').draggable({
containment: [ cOffset.left, cOffset.top, cRight ],
scroll: true
});
This will work fine to start with, BUT... and here's the kicker, every time the container moves, the draggable element will have to have it's containment attribute updated. Additionally, this can also be an issue if the window is resized. That said, I do have a fully functioning example here.
Post a Comment for "JQuery UI Draggable: Exceed Containment On One Side"