如何将onclick事件添加到joint.js元素?

时间:2013-12-09 05:04:48

标签: javascript jointjs

我在DAG中有一个joint.js元素,并希望能够通过点击它来触发事件。

我可以使用$(selector).click(...)来做,但我想知道是否有一个joint.js特定的处理方法, 因为那可能会更好。我决定的一个事件是onclick的候选人是'batch:stop'

我的代码:

 var variable =  new joint.shapes.basic.Rect({
     name : label,
     id: label,
     onclick : function () {alert("hello");},
     size: { width: width, height: height },
     attrs: {
         text: { text: label, 'font-size': letterSize, 'font-family': 'monospace' },
         rect: {
             fill : fillColor, 
             width: width, height: height,
             rx: 5, ry: 5,
             stroke: '#555'
         }   
     }   
 }); 
 variable.on('batch:stop', function (element) {alert(""); toggleEvidence(element.name);});
 return variable;

我应该如何添加onclick事件?

2 个答案:

答案 0 :(得分:23)

JointJS形状是模型,所以你是对的,点击处理程序不适用于它们。 JointJS论文触发了可能对您有用的事件:

paper.on('cell:pointerdown', 
    function(cellView, evt, x, y) { 
        alert('cell view ' + cellView.model.id + ' was clicked'); 
    }
);

其他事件包括:cell:pointerup,cell:pointerdblclick,cell:pointermove。

完整列表可在此处找到:http://jointjs.com/api#joint.dia.Paper:events

修改

从JointJS v0.9开始,还有一个cell:pointerclick事件。

答案 1 :(得分:0)

您还可以使用Backbone本身将特定事件附加到特定模型。 JointJS只是引擎盖下的骨干。

const newElement = new jointjs.shapes.devs.Model({....});
graph.addCell(newElement);

newElement
  .findView(paper)
  .$el.find('.Settings') // this is nested in the model / cell
  .click(() => {
    // do something
  });