Jero Soler

Results 367 comments of Jero Soler

Other option, more simple: - https://github.com/jerosoler/Drawflow/issues/363#issuecomment-1050699201

Hi @simkimsia You can try this solution: ```javascript editor.reroute = true; editor.import = function(data, notifi = true) { this.clear(); this.drawflow = JSON.parse(JSON.stringify(data)); if(notifi) { this.module= Object.keys(this.drawflow.drawflow)[0]; } this.load(); if(notifi) {...

1. and 2. You will have to modify the createcurvature function. View: #20 You will have to take into account the nodes and have their getBBox (Width, height, x and...

Point 1. It is as you describe with the collision system, as long as the object is rectangular. Point 2 is tricky. I think it would have to be done...

Hi! @ArG97 For vertical lines view: - https://github.com/jerosoler/Drawflow/issues/20

Hi @usama4850 You mean this? https://github.com/jerosoler/Drawflow/issues/93 You could embed drawflow into drawflow maybe. Since it supports multiple editors.

You can add 3 nodes at the same time. ```javascript const idofnodecreated = editor.addNode(...) const idofnodecreated2 = editor.addNode(...) ... addConnection(idofnodecreated, idofnodecreated2, 'output_1', 'input_1'); ...

Currently you can only select one node and drag one.

Thanks. I did tests back in the day, but found some problems with the df attributes of the library. I'd have to get back on topic.

I don't understand you. Do you want to get the id? - https://github.com/jerosoler/Drawflow/issues/271#issuecomment-944042114 View al issues vue: - https://github.com/jerosoler/Drawflow/issues?q=label%3AVue