backbone.js – 以静默方式向JointJS图添加单元格

在JointJS中,如何在不触发任何事件的情况下将单元格添加到图形中?

当我传递可选参数时:

{
    silent: true
}

单元格未在纸张中呈现.

最佳答案 这是jointjs
docs的设计,结帐选择收集部分.

selection.collection.add(element, { silent: true}); // add element to the collection, but renders no selection box.

点赞