mxgraph如何一键select子顶点?

How to select child vertex in one click on mxgraph?

我有嵌套的顶点,我想 select 第一次点击子顶点时的子顶点。

现在,当我点击一个子顶点时,它首先 select 是父顶点。

父顶点 select 首先编辑:

对于 selecting 子顶点,我必须再次单击子顶点。

子顶点 select 双击后编辑:

如何在第一次点击时 select 子顶点?

我通过覆盖 getInitialCellForEvent 函数解决了这个问题。

mxGraphHandler.prototype.getInitialCellForEvent = function(me)
{
    var state = me.getState();
    return (state != null) ? state.cell : null;
};

原来是这样的。我删除了检索最顶层单元格的 if 部分。

/**
 * Function: getInitialCellForEvent
 * 
 * Hook to return initial cell for the given event. This returns
 * the topmost cell that is not a swimlane or is selected.
 */
mxGraphHandler.prototype.getInitialCellForEvent = function(me)
{
    var state = me.getState();
    
    if ((!this.graph.isToggleEvent(me.getEvent()) || !mxEvent.isAltDown(me.getEvent())) &&
        state != null && !this.graph.isCellSelected(state.cell))
    {
        var model = this.graph.model;
        var next = this.graph.view.getState(model.getParent(state.cell));

        while (next != null && !this.graph.isCellSelected(next.cell) &&
            (model.isVertex(next.cell) || model.isEdge(next.cell)) &&
            this.isPropagateSelectionCell(state.cell, true, me))
        {
            state = next;
            next = this.graph.view.getState(this.graph.getModel().getParent(state.cell));
        }
    }
    
    return (state != null) ? state.cell : null;
};