-
Problem was resolved in 2009.2.
-
Is Drag and Drop possible ?
-
The group by column header image and animation is getting stuck inbetween grid header area and column header. Cannot resolve without reloading grid. I'm using binding with itemsource.
-
Individual cell dragging is not supported, but we can take that feature request into consideration. In the meantime, you should be able to use CellTemplates to utilize our DragDrop control in the way you need. It's a bit more complex than built-in row dragging functionality, but the outcome would be the same. I hope this helps.
-
Hi, This is definitely possible to do with the TreeView. 1) Attach listener to BeforeNodeDrop event 2) Create a copy of the dragged node and add it to the targetTree: TreeViewNode draggedNode = e.Items[0] as TreeViewNode; e.targetParentNode.Items.Add(new TreeViewNode() { Text = draggedNode.Text, IconSource = draggedNode.IconSource }); // prevent move e.Cancel = true; The dragged node still has all the references to its original tree, i.e. draggedNode.ParentNode is still valid. This allows us to add...