0

我正在使用 JS mxGraph 并希望在拖动时禁用顶点的自动选择。只有当用户点击它而不移动它时,才应该选择顶点。谢谢

4

1 回答 1

0

看起来像以下作品

    mxGraphHandler.prototype.isDelayedSelection = function(cell, me) {
        return true;
    };

    mxGraphHandler.prototype.getCells = function(initialCell) {
        if (this.graph.getSelectionCells().includes(initialCell)) {
            return this.graph.getMovableCells(this.graph.getSelectionCells());
        }
        return this.graph.getMovableCells([initialCell]);
    };
于 2017-04-05T10:01:32.400 回答