Open usama4850 opened 3 years ago
Hi @usama4850
You mean this? https://github.com/jerosoler/Drawflow/issues/93
You could embed drawflow into drawflow maybe. Since it supports multiple editors.
I want to make a node that contains 3 nodes and each are connected to each other when i add that node to editor it actually add 3 nodes that are connected to each other
You can add 3 nodes at the same time.
const idofnodecreated = editor.addNode(...)
const idofnodecreated2 = editor.addNode(...)
...
addConnection(idofnodecreated, idofnodecreated2, 'output_1', 'input_1');
...
now the issue in grouping and perfect positioning of all nodes when user drag and drop on editor
Currently you can only select one node and drag one.
Hi I am trying to make a custom node that contains multiple nodes with connnection is it possible?