당신은 바로 이전은이 같은 를 추가 한 후 다시 addEdge을 활성화 할 수 있습니다
manipulation: {
enabled: false,
addNode: function (data, callback) {
// filling in the popup DOM elements
console.log('add', data);
},
editNode: function (data, callback) {
// filling in the popup DOM elements
console.log('edit', data);
},
addEdge: function (data, callback) {
console.log('add edge', data);
if (data.from == data.to) {
var r = confirm("Do you want to connect the node to itself?");
if (r === true) {
callback(data);
}
}
else {
callback(data);
}
// after each adding you will be back to addEdge mode
network.addEdgeMode();
}
이 코드 예제에서 마지막 행을 참조하십시오.
network.addEdgeMode();
이렇게하면 콜백이 시작된 직후 addEdge 모드가 활성화됩니다.
는 plunker
안녕하세요,이 예제를보고, 그 대답은 나를 위해 완벽하게 잘 작동합니다! – DaTebe