Drag and drop of items within GoListGroup

Hello,

I have a GoListGroup containing items of GoText type with orientation
vertical. User should be allowed to change the order of each GoText
item by means of selection of item and dragging and dropping within the List.
Could you please suggest on how to enable rearranging of items
in GoListGroup using drag and drop of items within the list.
Thanks,
Nagaraj.

If you look in CollapsingRecordNode.cs in Demo1, you’ll find this code:

//??? comment out the following three assignments, and change Insertable to true,
// if you want to be able to drag around itemlists within a CollapsingRecordNode
this.Copyable = false;
this.Deletable = false;
this.DragsNode = true;
// this.Insertable = true;
give that a try...