I am trying to drag and drop from a Treeview onto a Diagram from inside a modal window. When I drop the item nothing happens. I don't even get an error. I can see that my function OnDataNodeDragged is called, and the item I am dragging is giving a value, but nothing is getting added to the NodeCollection when using NodeCollection.Add(). Is this happening because I'm inside a modal? When I do the same thing outside of a modal all works fine.
I am using the SFDialog to hold a SFTreeview and and SFDiagram. I am using the example you sent on a the same singlepage app and want to use the modal to hold a different Diagram. The Treeview works okay and I can drag, but the NodeCollection is not added to. I have attached a copy of the code I am using for my modal.