Dear Team,
we need to enable copy functionality for our WPF application especially for radgridview. How could i enable this? As per my understanding To enable cell copy i've to do like ClipboardCopyMode="Cell" and SelectionUnit="Cell". If i apply this then row selection is not working because i am using row SelectionChanged event in order to do some operation.
<
telerik:RadGridView
x:Name
=
"gvDefaultDashboard"
AutoGenerateColumns
=
"False"
CanUserResizeColumns
=
"True"
Padding
=
"1,0,0,0"
SelectionMode
=
"Single"
EnableColumnVirtualization
=
"False"
ItemsSource
=
"{Binding RelativeSource={RelativeSource AncestorType=UserControl},Path=DataContext.GetPagedInfo,Mode=TwoWay}"
SelectionChanged
=
"gvDefaultDashboard_SelectionChanged"
Filtering
=
"gvDefaultDashboard_Filtering"
FilterOperatorsLoading
=
"OnRadGridViewFilterOperatorsLoading"
AutoExpandGroups
=
"True"
Sorting
=
"gvDefaultDashboard_Sorting"
Grouping
=
"gvDefaultDashboard_Grouping"
telerik:PersistenceManager.StorageId
=
"{Binding DashBoardPersistenceID,Mode=TwoWay}"
ClipboardCopyMode
=
"Cells"
SelectionUnit
=
"Cell"
>
</
telerik:RadGridView
>
I want to enable cell copy without affection the row selectionchanged event how could i achieve this. Please advice.
Thank you.