Is it possible to allow a datagrid column to be dragged vertically and dropped into an area above the datagrid in Silverlight 4? Just like telerik. Thank you
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
@AnthonyWJones Telerik’s control groups the column dragged to the header. My guess is that it adds a PropertyGroupDescription with the name of the Column to a PagedCollection view which is the data context of the DataGrid:
(from the SilverlightToolkit online demos):
You can check the control user273340 is talking about here: http://demos.telerik.com/silverlight/#GridView/FirstLook
What I’m not sure off is how they implement the draggin to the header stuff.