This is driving me nuts.
When I allow the columns to be AutoGenerated I can they can be editted, that is the original values are shown and can be modified ( and the data persists ). If I define the fields manually, as below, then the cell is blanked prior to editiing and when the cell loses focus the editted cell reverts to its original value. I'm sure that I am doing something stupid but cannot work this out.
Thanks
When I allow the columns to be AutoGenerated I can they can be editted, that is the original values are shown and can be modified ( and the data persists ). If I define the fields manually, as below, then the cell is blanked prior to editiing and when the cell loses focus the editted cell reverts to its original value. I'm sure that I am doing something stupid but cannot work this out.
<
telerik:RadGridView
Name
=
"rgv1"
RowIndicatorVisibility
=
"Visible"
Grid.Column
=
"1"
Grid.Row
=
"2"
ItemsSource
=
"{Binding ValidUsers}"
SelectedItem
=
"{Binding SelectedValidUser, Mode=TwoWay}"
IsSynchronizedWithCurrentItem
=
"True"
AutoGenerateColumns
=
"False"
EditTriggers
=
"CellClick"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding userPassword, Mode=TwoWay}"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
Thanks