Delete a RootNode within a Plugin.Action
Hi there,
i'm currently trying to delete a RootNode within a plugin.action, but i haven't found a way to do this so far. The CONTEXT_MODEL is only providing Methods to create or add nodes.
Does anyone know how to delete rootnodes within a plugin?
Cheers,
Simon
i'm currently trying to delete a RootNode within a plugin.action, but i haven't found a way to do this so far. The CONTEXT_MODEL is only providing Methods to create or add nodes.
Does anyone know how to delete rootnodes within a plugin?
Cheers,
Simon
Please sign in to leave a comment.
this.model.getSModel().removeRoot(node);
You can also try "delete" operation on your node:
This will only work on the node<...> type
Regards,
Mihail
worked just fine. Thanks.
Best Regards,
Simon