So I recreated the HTML Drag and Drop - Example (http://gojs.net/latest/samples/htmlDragDrop.html) and managed to get it to work: After the HTML-div is dropped over the canvas a new Node and a corresponding GraphObject get created by calling diagram.model.addNodeData({…}).
But what I want to do now is the following:
a) After the GraphObject is created, I want it to immediately select the text inside and make it editable.
b) I want the new graphObject to fade-in instead of just popping-up.
I think what I need is to get a hold on the GraphObject that gets created by addNodeDate, but I don’t know how…
Best regards,
Markus