How to disable edge routing points #747
Answered
by
planger
sathya-1994
asked this question in
Q&A
-
I am using vscode version of GLSP When we select any edge, we will get edge routing points. But I want disable these edge routing points. How to implement my requirement? |
Beta Was this translation helpful? Give feedback.
Answered by
planger
Sep 22, 2022
Replies: 1 comment 1 reply
-
I think you can set Also, I think, you can disable the configureModelElement(context, 'your-edge-type-id', SEdge, YourView, { disable: [editFeature] }); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sathya-1994
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you can set
routable
tofalse
in theEdgeEditHints
in your diagram configuration on the server.Also, I think, you can disable the
editFeature
for the edge type in your GLSP client module, which would turn off those routing points edges of that type on the client.