This question is locked. New answers and comments are not allowed.
I'm using a password box inside of a RadGridView cell. I'm also using buttons with the gridview commands to control the editing behavior of the grid. It works pretty well except that if the only field changed is the password field, the 'Save Insert/Edit' button is not enabled. I actually have to edit another field in the same row and then the button becomes enabled and I can save the changes. The updated password is then written to the database via a web service. Is there a different way to bind the password box to the grid cell so that it works better with the gridview command buttons? I've included my code below:
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding password, Mode=TwoWay, NotifyOnValidationError=True, ValidatesOnDataErrors=True}"
Header
=
"Password"
>
<
telerik:GridViewDataColumn.CellTemplate
>
<
DataTemplate
>
<
PasswordBox
Password
=
"{Binding password, Mode=TwoWay, NotifyOnValidationError=True, ValidatesOnDataErrors=True}"
/>
</
DataTemplate
>
</
telerik:GridViewDataColumn.CellTemplate
>
</
telerik:GridViewDataColumn
>