Class CellEditArgs<T>
Class that defines event argument of the cell edit.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class CellEditArgs<T> : GridEventBaseArgs
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component. |
Constructors
CellEditArgs()
Declaration
public CellEditArgs()
Properties
Cancel
Defines the cancel option value.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Cell
Defines the cell object.
Declaration
public DOM Cell { get; set; }
Property Value
Type | Description |
---|---|
DOM |
ColumnName
Defines the column name.
Declaration
public string ColumnName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ColumnObject
Defines the column object.
Declaration
public GridColumn ColumnObject { get; set; }
Property Value
Type | Description |
---|---|
GridColumn |
Data
Defines the data object.
Declaration
public T Data { get; set; }
Property Value
Type | Description |
---|---|
T |
EditContext
Defines the current EditContext
instance.
Declaration
public EditContext EditContext { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Forms.EditContext |
ForeignKeyData
Defines foreign data object.
Declaration
public IDictionary<string, IEnumerable<object>> ForeignKeyData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Collections.Generic.IEnumerable<System.Object>> |
IsForeignKey
Defines isForeignKey option value.
Declaration
public bool IsForeignKey { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
PrimaryKey
Defines the primaryKey.
Declaration
public string[] PrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
Row
Defines the current row.
Declaration
public DOM Row { get; set; }
Property Value
Type | Description |
---|---|
DOM |
RowData
Defines the original row data object.
Declaration
public T RowData { get; set; }
Property Value
Type | Description |
---|---|
T |
Type
Defines the name of the event.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ValidationRules
Defines the validation rules.
Declaration
public ValidationRules ValidationRules { get; set; }
Property Value
Type | Description |
---|---|
ValidationRules |
Value
Defines the cell value.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |