Hi,
I'd like to handle the event RowDragDropController.Dropped by a command because I use MVVM pattern.
I tried with my code below, but the command doesn't trigger. What I do wrong?
<syncfusion:SfDataGrid Name="sfDataGrid"
Width="Auto" Height="Auto" HorizontalAlignment="Stretch"
ItemsSource="{Binding PptFilesCollection, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
AutoGenerateColumns="False"
RowDropIndicatorMode="Line"
AllowDraggingRows="True"
AllowDrop="True"
ShowRowHeader="True">
<i1:Interaction.Triggers>
<i1:EventTrigger EventName="Dropped">
<i1:InvokeCommandAction Command="{Binding TestCommand}" />
</i1:EventTrigger>
</i1:Interaction.Triggers>
</syncfusion:SfDataGrid>
Regards
Jakub