Hi,
I set FieldSettings.AllowEdit to false and would like to copy(Ctrl+C) the cell of grid.
But it seems I can't select the text of the cell.
Is current version provide this functionality?
Thanks
Hello,
In 9.2 version, you can use the clipboard support and copy the content of the selected cells with Ctrl + C.
You have to turn on this feature first
XamDataGrid.FieldLayoutSettings.AllowClipboardOperations = AllowClipboardOperations.Copy;
and then select the cells that you want to copy and press Ctrl + C.
Hey Infragistics- Don't ever delete the old posts. This 2009 post helped me in 2015. Thank you
I downloaded an evaluation copy of Infragistic's WPF controls and its version is v9.1. I do not seem to have the AllowClipboardOperations property available to me. Is this because I am using v9.1 instead of v9.2? If so, how would I get v9.2 for evaluation?
Thank you,
Bill
hello,
it works. but the value is the string of class type. in my application, the CellValuePresenter.Value is a class instance and i set up binding so that the cell can show the correct value.
it seems the Ctrl+C copy the CellValuePresenter.Value.ToString(). is there any way to customize the string copy to clipboard without change the ToString method of CellValuePresenter.Value ?