Ralph Soika

Results 125 comments of Ralph Soika

I see it form a user perspective more like this: - First I just want to draw a new edge between two nodes. Form the server side this is just...

Hi, coming back to your discussion I want to ask you for a practical advice. I came to the point where it seems to be necessary to implement my own...

Hi, I have now started to implement my own BPMNEdgeRouter based on the Sprotty Code of the [ManhattanEdgeRouter](https://github.com/eclipse/sprotty/blob/b0e9d60e9c9ab7d302f84f55eef227828ba7d68c/packages/sprotty/src/features/routing/manhattan-edge-router.ts). To follow your thoughts in this discussion I figured out, that in...

I figured out that when I send out a new action at the end of the `route()` method like this: ```javascript route(edge: SRoutableElement): RoutedPoint[] { ......... ...... const action=ChangeRoutingPointsOperation.create([{ elementId:edge.id,newRoutingPoints:routedPoints}]);...

My final working solution looks now like this: ```javascript export class BPMNEdgeRouter extends AbstractEdgeRouter { ..... route(edge: SRoutableElement): RoutedPoint[] { if (!edge.source || !edge.target) { return []; } // do...

Sorry for polluting this thread but it is not working after all. Finally - after a lot of debugging - I figured out that this all could be also a...

I have a similar issue and I am interested in how you solve your problem. Do you use GLSP or are you working on Sprotty only? Have you a feature...

Sorry, I am unable to follow your example. In my own current GLSP server code I do the following to add a `GPort` to a GLSP `GNode`: ```java GPort createBPMNPort(final...

Thanks for your Answer. Yes I figured out this behaviour and I solved it after a lot of guessing. I do now defining 4 ports on North,South,West,East. And I did...

ok, I have asked the same already the glsp team : https://github.com/eclipse-glsp/glsp/issues/564 But they told my it is more sprotty than glsp, this is the reason why I asked it...