OnCopyingCellClipboardContent of the GridViewDataColumn? What is the recomended solution?
Example column definition:
<telerik:GridViewDataColumn Header="Counterparty" UniqueName="CounterParty">
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=ItemSelectedCounterParty.Name}" TextWrapping="Wrap"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
<ComboBox ItemsSource="{Binding ItemCounterParties}"
SelectedItem="{Binding ItemSelectedCounterParty, Mode=TwoWay}"
DisplayMemberPath="Name"
SelectedValuePath="ConterpartyId"/>
</DataTemplate>
</telerik:GridViewDataColumn.CellEditTemplate>
</telerik:GridViewDataColumn>
Copy command:
var copyCommand = RadGridViewCommands.Copy as RoutedUICommand;
copyCommand.Execute(
null, this.radGridView);