How to make possible drag and drop rows when the SortedColumns.Count>0
regards,
pgr2007
The grid has no built-in drag and drop functionality. So you would need to write code to handle this. I don't see what SortedColumns has to do with it, although that might influence how you drop rows. But since you didn't mention what exactly you want to do when a row is dropped, I'm not sure how to answer your question.
Hi,
Thanks for the reply.
I have enabled the drag and drop feature with the code from the link
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=10086
This code works for me in ordinary case, but when I grouped the rows by a column
this.UltraGrid1.DisplayLayout.Bands[0].SortedColumns.Add("ColumnName", false, true);
This drag and drop is not working.
As I need drag and drop inside the group.
Please reply