Class IgbGridEditEventArgsDetail
Inheritance
System.Object
IgbGridEditEventArgsDetail
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbGridEditEventArgsDetail : BaseRendererElement, JsonSerializable
Constructors
IgbGridEditEventArgsDetail()
Declaration
public IgbGridEditEventArgsDetail()
Properties
Cancel
Declaration
public bool Cancel { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
CellID
Declaration
public IgbGridCellIdentifier CellID { get; set; }
Property Value
Column
Declaration
public IgbColumn Column { get; set; }
Property Value
IsAddRow
Declaration
public bool IsAddRow { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
NewValue
Declaration
public object NewValue { get; set; }
Property Value
Type |
Description |
System.Object |
|
OldValue
Declaration
public object OldValue { get; set; }
Property Value
Type |
Description |
System.Object |
|
Owner
Declaration
public IgbGridBaseDirective Owner { get; set; }
Property Value
PrimaryKey
Declaration
public object PrimaryKey { get; set; }
Property Value
Type |
Description |
System.Object |
|
RowData
Declaration
public object RowData { get; set; }
Property Value
Type |
Description |
System.Object |
|
RowID
Declaration
public object RowID { get; set; }
Property Value
Type |
Description |
System.Object |
|
RowKey
Declaration
public object RowKey { get; set; }
Property Value
Type |
Description |
System.Object |
|
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Valid
Declaration
public bool Valid { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
Type |
Name |
Description |
BaseRendererControl |
control |
|
System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
SetNativeElement(Object)
Declaration
public void SetNativeElement(object element)
Parameters
Type |
Name |
Description |
System.Object |
element |
|
SetNativeElementAsync(Object)
Declaration
public Task SetNativeElementAsync(object element)
Parameters
Type |
Name |
Description |
System.Object |
element |
|
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
Type |
Name |
Description |
BaseRendererControl |
control |
|
System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements