Getting Row values on Delete click #2130
Answered
by
stsrki
tomironkko
asked this question in
Q&A
-
Hello, In DataGrid, what is the correct way of getting the row values, when clicking Delete? I need to send them to Api, but I don't know how to get them.. Thank you very much for your help. |
Beta Was this translation helpful? Give feedback.
Answered by
stsrki
Mar 30, 2021
Replies: 1 comment
-
Either one of these RowRemoving="@OnRowRemoving"
RowRemoved="@OnRowRemoved" Task OnRowRemoving( CancellableRowChange<Employee> e )
{
return Task.CompletedTask;
}
Task OnRowRemoved( Employee model )
{
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
Either one of these