How to make an editor not editable/ deletable?
I need to change the editor to not editable/ deletable and the intentions option should come.
read only: true in an editor style makes a node not editable and the intentions also not coming.
So how to change the editor with both read only and intention menu?
Please sign in to leave a comment.
Use editable: false instead of read-only.
Vaclav
Thanks @Vaclav. But it is coming only for the properties of the node and it is deleting the entire node if the delete action is invoked.
Then I'd suggest to handle/disallow the DELETE action in an action map.
Vaclav