-
Is there a way to have "Edit" without "Delete"? I have grid where only one column is editable, but I do not want to allow deleting of the row, It seems that if I put in a DataGridCommandColumn, I get both Edit and Delete. |
Beta Was this translation helpful? Give feedback.
Answered by
stsrki
Apr 21, 2021
Replies: 2 comments
-
You must use the Command Templates: Something like this:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Or you can just disable the delete command <DataGridCommandColumn TItem="Employee" DeleteCommandAllowed="false"> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jnoneman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Or you can just disable the delete command