Our clients have expressed the desire to be able to emulate a behavior that is possible in SQL Server Query Analyer.
they would liek to be able to highlight several rows of one columns and copy those cell values to the clipboard
I have enclosed a screen shot is this possible to implement in silverlight?
Hi,
This is a supported scenario. You just need to enabled CellSelection (http://help.infragistics.com/NetAdvantage/Silverlight/2012.1/CLR4.0/?page=xamGrid_Selection.html) and the Copy support (http://help.infragistics.com/NetAdvantage/Silverlight/2012.1/CLR4.0/?page=xamGrid_Enable_Copy_and_Paste_Support.html).
HTH
I figured out the settings part on my own and I know how to implement pasting to a clip board , the problem I am having is in my grid right mouse button up event I cannot see how to determine what is selected? I need to be aable to send the values form the selected cells (single column in our scenario) to the clip board.
I have it working now (thank you) but my designers would still like to be able to show a "Copy" popup menu and copy from there so I still have the problem of
"how do I do this from Code behind?
Control +C works but I need to ba able to fire this from a menu command as well.
almost there.
actually I just figured this one out on my own as well