-
I have added an Edit button to set the SelectedDataItem and this works really well. I have a Save button to save the changes in a row, but I don't know how to get the SelectedDataItemChanged event to fire. Any help would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
Beta Was this translation helpful? Give feedback.
I'm not certain about your code structure or the specific issues you're encountering.
If you're utilizing an explicit Save button, you should not be using the
HandleSelectedDataItemChanged
handler, but instead you save changes in theHandleSaveClick
method and also set the corresponding fieldselectedDataItem = null
within that method.