ClassGridViewRowEditEndedEventArgs
Contains info needed to handle RowEditEndedEvent.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
public class GridViewRowEditEndedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsGridViewRowEditEndedEventArgs
Constructors
GridViewRowEditEndedEventArgs(GridViewRow, object, RoutedEvent, IDictionary<string, object>)
Initializes a new instance of the GridViewRowEditEndedEventArgs class.
Declaration
public GridViewRowEditEndedEventArgs(GridViewRow row, object newDataItem, RoutedEvent routedEvent, IDictionary<string, object> oldValues)
Parameters
row
The row.
newDataItem
The new data item.
routedEvent
RoutedEvent
The routed event.
oldValues
The old values.
Properties
EditAction
Gets the edit action.
Declaration
public GridViewEditAction EditAction { get; }
Property Value
The edit action.
EditOperationType
Gets the type of the edit operation.
Declaration
public GridViewEditOperationType EditOperationType { get; }
Property Value
The type of the edit operation.
EditedItem
Gets the edited item.
Declaration
public object EditedItem { get; }
Property Value
The edited item.
NewData
Gets the new data of the edited row.
OldValues
Gets the old values.
Declaration
public IDictionary<string, object> OldValues { get; }
Property Value
The old values.
Row
Gets the edited GridViewRow. In some rare cases (when row leaves the grid's visible area), the real row for the edited item is a new one. In these cases you can perform any actions on the new row using ScrollIntoViewAsync(object, Action<FrameworkElement>) method.
UserDefinedErrors
Gets the errors defined by user via RowValidating event.