The datagrid appears to handle type/value display and editing very well when because it meets the contract of a database table. But I have a requirement to display the data in rows instead of columns.
Example:
Editing is by cell, some rows or cell may be readonly.
We also need to support multi cell copy paste of values.
What is the best way to do this?
Hello johne42,
Let me know if you have any other questions.
Hi,
The xamGrid doesn't currently have the ability to swap Columns and Rows. It's strictly built off the ItemsSource, where Properties are columns and rows are just items within the columns.
As for your other questions:
To have certain cell's be readonly, you can use the CellEnteringEditMode event and set e.Cancel = true when a cell/row doesn't meet editing criteria,
For Mutli cell copy and paste we added this feature in 10.3:http://forums.infragistics.com/blogs/kiril_matev/archive/2010/10/19/quick-and-effective-clipboard-support-in-the-xamgrid-10-3-using-clipboard-extensions.aspx
http://help.infragistics.com/NetAdvantage/Silverlight/2010.3/CLR4.0/?page=SL_xamGrid_Copy_Paste_Support.html
-SteveZ