I'm using the DevExpress XPF GridControl's NewItemRow for adding new row to my database. How to get the user entered data from new row. Am using prism framework. Here is my xaml
<dxg:GridControl.View>
<dxg:TableView AutoWidth="True" AllowEditing="True" NewItemRowPosition="Top">
<dxmvvm:Interaction.Behaviors>
<dxmvvm:EventToCommand EventName="RowUpdated"
Command="{Binding RowUpdateClickCommand}" CommandParameter="{Binding CurrentItem}"/>
</dxmvvm:Interaction.Behaviors>
</dxg:TableView>
</dxg:GridControl.View>