Class IgbGridCellValueChangingEventArgs
Event arguments for the CellValueChanging event
Inheritance
System.Object
IgbGridCellValueChangingEventArgs
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbGridCellValueChangingEventArgs : BaseRendererElement, JsonSerializable
Constructors
IgbGridCellValueChangingEventArgs()
Declaration
public IgbGridCellValueChangingEventArgs()
Properties
CellInfo
Gets the cell that was edited.
Declaration
public IgbCellInfo CellInfo { get; set; }
Property Value
Column
Gets the column the cell belongs to.
Declaration
public IgbDataGridColumn Column { get; set; }
Property Value
ColumnScript
Provides a means of setting Column in the JavaScript environment.
Declaration
public string ColumnScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
EditID
Gets the edit ID for this value change.
Declaration
public int EditID { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
Item
Gets the row item associated with the change.
Declaration
public object Item { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
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 |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
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
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