Hi,
In my case, I needed a bit more custom pasting.
The grids first column is a combobox column, that updates the second column on selected item, so on paste, the PasteCell updates the first column, then skips the second column and on to the third cell and etc.
XAML:
<syncfusion:SfDataGrid AllowFiltering="True"
AddNewRowPosition="FixedTop"
AutoGenerateColumns="False"
EditTrigger="OnTap"
ColumnSizer="Star"
ItemsSource="{Binding Data}"
Margin="0,0,0,40" >
<syncfusion:SfDataGrid.Columns>
<syncfusion:GridComboBoxColumn IsEditable="True" AllowEditing="True" MappingName="Material" HeaderText="Material" ItemsSource="{Binding Materials}"/>
<syncfusion:GridTextColumn IsReadOnly="True" MappingName="MaterialDesc" HeaderText="Material Desciption"/>
<syncfusion:GridNumericColumn AllowEditing="True" MappingName="Blocked" HeaderText="Blocked" NumberDecimalDigits="0"/>
</syncfusion:SfDataGrid>
The paste work, it pastes into the 1st and 3rd column as intended.
My question is, how to update the 2nd column after/under paste?
Regards,
Attila