DataGrid Editing, how to get edited row values? #2026
Answered
by
stsrki
tomironkko
asked this question in
Q&A
-
Hello, I am using DataGrid, and I would like to send my Edited row values to Api (PUT). Where can I find those edited values (I click Edit and change the values, and click Save). I would need all the values from the row that I edited. Thank you very much for your help :) |
Beta Was this translation helpful? Give feedback.
Answered by
stsrki
Mar 13, 2021
Replies: 1 comment
-
For this you have the Example Task OnRowInserted( SavedRowItem<Employee, Dictionary<string, object>> e )
{
// ...
return Task.CompletedTask;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tomironkko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For this you have the
RowUpdating
andRowUpdated
, AlsoRowInserting
andRowInserted
.Example