CollapsingRecordNode PickableBackground

i’m now using CollapsingRecordNode.



but i’m cannot move CollapsingRecordNode by mouse drag of clicked collapsingrecordnodeitemlist or collapsingrecordnodeitem.



what’s wrong?



below my code…

========================================================

public class CollapseNode : GoNode

{



public CollapseNode(…)

{



this.Selectable = true;

this.PickableBackground = true;

this.DragsNode = false;



this.Resizable = true;

this.Deletable = this.bIsDeletable;

this.ResizesRealtime = this.bIsResizesRealtime;

this.Shadowed = this.bIsShadowed;



}



}



public class CollapseNodeItemList : GoListGroup

{



public CollapseNodeItemList (…)

{



this.Selectable = false;

this.PickableBackground = false;

this.DragsNode = true;



this.Copyable = false;

this.Deletable = false;



}



}



public class CollapseNodeItem : GoTextNode

{



public CollapseNodeItem(…)

{



this.Selectable = true;

this.PickableBackground = true;

this.DragsNode = false;



this.Resizable = false;

this.AutoResizes = false;

this.Copyable = false;

this.Deletable = false;



}



}

What version are you using?

What changes did you make to CollapsingRecordNode as it appears in Demo1?

GoDiagram Version is 3.0.2.2



it’s make to CollapsingRecordNode as it appears in Demo1.



And is added several GoTools(GoToolContext,GoToolDragging,GoToolLinkingNew,GoToolRelinking).



if childnode.ParentNode.dragsnode = false and childnode.dragsnode = true,

i can move CollapseNode as pick-background lastest childnode

but i can’t move CollapseNode as pick-background lastest childnode’s ParentNode

DragsNode should be true for both NodeItem and NodeItemList.

Check the DraggingObject property (you can see it in the Demo1 F4 properties window) for all the sub-parts of your node. It should be the CollapsingRecordNode.