The group node cannot be moved by drag-and-drop, if the toLinkable or fromLinkable property is true

The group node cannot be moved by drag-and-drop, if the toLinkable or fromLinkable property is true.

When I add the following code

myDiagram.groupTemplate =
   $(go.Group, "Auto",
        {
            toLinkable: true,
            fromLinkable: true,
            moveable:true,
         }
    )

Below is my sample with the code added to the regrouping demo.
https://jsfiddle.net/satoshi_tanoue/p6j4c5tv/12/

I would like a group node that is linkable and movable.
As for other solutions, it would be nice to be able to move only while pressing a key.

How can I do this?

Set fromLinkable and/or toLinkable to true on one or more objects inside the group, not on the whole group. Or do the opposite – set those properties to false on some objects so that the user can drag the group with those objects.

Drawing Commands demonstrates how you can customize the arrow keys to move selected nodes.

Thank you walter. I’ll try it.

Thank you very much. I was able to solve the problem. I appreciate it.