我正在使用JS mxGraph,并希望在拖动时禁用顶点的自动选择。只有在用户点击它而不移动顶点时才应选择顶点。 感谢
答案 0 :(得分: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]);
};