我在我的项目中使用jsPlumb,基本上是构建流程图,用户可以在其中将形状从一个div拖放到另一个div(#frame)。

因此,我希望某些形状可以调整大小,但是我遇到了一些问题,因为当我尝试调整形状的大小时,它也会像拖动一样移动。

我在resize事件中使用了jsPlumb.repaint,但还是一团糟。

/**
 * Enable element to be resizable at the div '#frame'.
 * Set a new ID to the element
 *
 * @param {Object} elem
 */
function make_resizable(elem) {
    count_id++;

    var id_name = "production_" + count_id; // build a new id
    elem.attr("id", id_name);

    $("#frame").append(elem);

    elem.resizable({
        resize: function(event, ui) {
          jsPlumb.repaint(ui.helper);
        },
        handles: "all"
    });

    jsPlumb.draggable(elem, {
        containment: "parent"
    });
}

function make_draggable(elem) {
    elem.removeClass("drag").addClass("draggable onFrame");

    elem.attr("visible", "true");
    elem.draggable({
        containment: 'parent',
    });
}

$(document).ready(function(){
    $(".drag").draggable({
        revert: "invalid",
        helper: 'clone',
        cursor: "move",
        containment: 'frame'
    });

    $("#frame").droppable({
        accept: ".drag",
        drop: function(event, ui) {
            var cloned = $(ui.helper).clone();

            if ( $(ui.helper).parent("#frame").length == 0 ) {
                var pos = $(ui.helper).offset();
                var draggableOffset = ui.helper.offset(),
                    droppableOffset = $(this).offset(),
                    left = draggableOffset.left - droppableOffset.left,
                    thisTop = draggableOffset.top - droppableOffset.top;

                cloned.css({
                    "left": left,
                    "top": thisTop
                });

                if ( cloned.hasClass("production-unit")) {
                    make_resizable(cloned);
                    //cloned.css("z-index", zIndex_unit++);
                } else {
                    make_connectable(cloned);
                    //cloned.css("z-index", zIndex_elem++);
                }

                make_draggable(cloned);
            }
        }
    });
});

最佳答案

仅供参考,我遇到了类似的问题。事实证明(并由问题下的评论之一表明),您不应将全局jsPlumb与实例混合。相反,您应尽可能使用jsPlumb实例(在上面的示例中,该实例名为elem)。

这基于开发人员在此处的(sporritt)注释:https://github.com/sporritt/jsPlumb/issues/387#issuecomment-185099198

他们正在考虑删除2.1.0中的全局jsPlumb,以消除在您将两个不同的实例混合在一起而无法正常工作的情况下的困惑。

关于jquery - 使用拖动和调整大小的jsPlumb问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31755552/

10-12 02:28