Its possible to have a row moving of potition like a column moving?
If its not possible. Cam you consider to add this option?
sch said:Has this feature been implemented yet?
No.
sch said:If not, where can I find info on implementing this via Drag&Drop
I don't know of any samples of this specifically. But it should not be terribly difficult. The Move methd on the Rows collection allows you to move a row to a new position within the same collection.
So all you have to do is implement Drag and Drop. The only part of this that might be a bit tricky is determining which row was dropped on. And here's a KB article that shows you how to do that:
HOWTO:UltraWinGrid Mouse Position and Row Identification
Note that drag and drop events use screen coords, not control coords. So you will have to use PointToClient to convert the coords you get from the event into grid coords for ElementFromPoint.
Has this feature been implemented yet?
If not, where can I find info on implementing this via Drag&Drop
ok tanks!
Hi,
There's no built-in functionality in the grid to allow moving rows, but you could implement this yourself using Drag and Drop and the Move method on the rows collection.
I recommend that you also Submit a feature request to Infragistics