通过单击纸张的空白区域,将添加一个新单元格:
paper.on({
'blank:pointerdblclick': function(event, x, y) {
var rect = new joint.shapes.app.Standard({
position: { x: x, y: y },
size: { width: 100, height: 80 },
});
graph.addCell(rect);
rect.on('change:position', function() {
paper.fitToContent();
});
}
});
但是,当change:position
事件中设置了blank:pointerdblclick
事件时,它只会触发新元素。但是应该针对本文中存在的所有细胞进行设置。
因此,为了移动纸张上的任何单元格,应该完成fitToContent() - 函数...
我该怎么做?
P.S。:标准元素的定义如下:
joint.shapes.app.Standard = joint.shapes.basic.Generic.extend({
markup: '<rect/><circle class="port-top"/><circle class="port-bottom"/><circle class="port-right"/><circle class="port-left"/><text/>',
defaults: joint.util.deepSupplement({
type: 'app.Standard',
attrs: {
...
}
}, joint.shapes.basic.Generic.prototype.defaults)
});
答案 0 :(得分:2)
使用graph.getElements()并迭代设置处理程序
graph.getElements().forEach(function(element) {
element.on('change:position', function() {
paper.fitToContent();
});