Class OnRowEditStartEventArgs
Provides information about the OnRowEditStart event.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class OnRowEditStartEventArgs : GridEventBaseArgs
Constructors
OnRowEditStartEventArgs()
Declaration
public OnRowEditStartEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the editing action in the grid.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is |
PreventDataClone
Gets or sets whether to clone data object during editing. Set the property when the OnRowEditStart event is triggered.
Declaration
public bool PreventDataClone { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A Boolean value that indicates whether the data object should be cloned or not when editing begins. |
Remarks
If PreventDataClone
is set to true
, the edited data will be saved even if the user discards the changes using the Cancel button in the toolbar or dialog editing cancel button.