Deleting selected nodes and links

If you want to be able to delete selected nodes and links on the view, you have to set the editable mode on the view component as follows:
<jvdf:diagrammerView id="thediagrammer" editable="true" [...] /> 
This allows you to ask for deletion of the selected objects on the client side by using the following JavaScriptâ„¢ code:
thediagrammer.getSelectionManager().deleteSelection();