You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see my arrows and stubs, but they are not draggable.. (on reload they are draggable again)
if I write it like this
constructor(_flowchart: FlowChart) {
this.jsPlumb.setContainer("flowdesigner");
this.jsPlumb.bind("connection", (info) => {
that._flowchart.addConnection(info);
this.jsPlumb.select(info).addOverlay(["Arrow", { width: 10, length: 30, location: 1 }]);//without that i dont have arrows on reload
})
}
I get double arrows and connections. i can drag the first connection and detach it, but the second is still visible.
if i dont set the container neither stubs nor arrows are shown
Any idea how to make it draggable in the service? Or how to fix the double connection issue?
(the draggable is set in another component)
The text was updated successfully, but these errors were encountered:
Hello people,
I have following problem ...
I used jsplumb in a project using a plumber-service.ts.
if I write following:
I see my arrows and stubs, but they are not draggable.. (on reload they are draggable again)
if I write it like this
I get double arrows and connections. i can drag the first connection and detach it, but the second is still visible.
if i dont set the container neither stubs nor arrows are shown
Any idea how to make it draggable in the service? Or how to fix the double connection issue?
(the draggable is set in another component)
The text was updated successfully, but these errors were encountered: