Skip to content

DataGrid Editing, how to get edited row values? #2026

Answered by stsrki
tomironkko asked this question in Q&A
Discussion options

You must be logged in to vote

For this you have the RowUpdating and RowUpdated, Also RowInserting and RowInserted.

Example

Task OnRowInserted( SavedRowItem<Employee, Dictionary<string, object>> e )
{
    // ...

    return Task.CompletedTask;
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by tomironkko
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants