I have a RadGridView with data bound columns:
However, when I edit the data, the TargetUpdated event does not seem to be triggered.
Is this event supported by GridViewDataColumns?
Thanks,
Nick.
<
tk:RadGridView.Columns
>
<
tk:GridViewCheckBoxColumn
Header
=
""
DataMemberBinding
=
"{Binding IsSelected,NotifyOnTargetUpdated=True}"
Width
=
"Auto"
AutoSelectOnEdit
=
"True"
EditTriggers
=
"CellClick"
TargetUpdated
=
"FieldUpdated"
/>
<
tk:GridViewDataColumn
Header
=
"Field"
DataMemberBinding
=
"{Binding Name}"
IsReadOnly
=
"True"
Width
=
"Auto"
/>
<
tk:GridViewDataColumn
Header
=
"Filter"
DataMemberBinding
=
"{Binding Filter,NotifyOnTargetUpdated=True}"
Width
=
"50"
TargetUpdated
=
"FieldUpdated"
/>
</
tk:RadGridView.Columns
>
However, when I edit the data, the TargetUpdated event does not seem to be triggered.
Is this event supported by GridViewDataColumns?
Thanks,
Nick.