Hello,
I'm now developing a table to edit a List. I have only one problem, i wan't to cancel edit when user change row without saving with a button on the left of the row.
I use RadGridView and i have try this: ActionOnLostFocus="CancelEdit" but it don't work...
<
telerik:RadGridView
x:Name
=
"MyGrid"
MaxHeight
=
"500"
CellEditEnded
=
"GridConfig_OnCellEditEnded"
BeginningEdit
=
"EditGrid_BeginningEdit"
RowLoaded
=
"EditGrid_RowLoaded"
CanUserFreezeColumns
=
"True"
EnableColumnVirtualization
=
"False"
AutoGenerateColumns
=
"False"
RowEditEnded
=
"GridConfig_OnRowEditEnded"
ItemsSource= "{Binding ConfigurationList,
Mode
=
OneWay
,
UpdateSourceTrigger
=
PropertyChanged
}">