Class IgbDataSourceAggregatedResult
Represents the result of all changes applied to a specific item.
Inheritance
System.Object
IgbDataSourceAggregatedResult
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbDataSourceAggregatedResult : BaseRendererElement, JsonSerializable
Constructors
IgbDataSourceAggregatedResult()
Declaration
public IgbDataSourceAggregatedResult()
Properties
Item
Gets the item associated with the change
Declaration
public object Item { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
ItemScript
Provides a means of setting Item in the JavaScript environment.
Declaration
public string ItemScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Keys
Gets the property names that were updated.
Declaration
public string[] Keys { get; set; }
Property Value
| Type |
Description |
| System.String[] |
|
TransactionType
Gets the type of update that was applied to this item.
Declaration
public TransactionType TransactionType { get; set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Values
Gets the property values that were updated.
Declaration
public object[] Values { get; set; }
Property Value
| Type |
Description |
| System.Object[] |
|
ValuesScript
Provides a means of setting Values in the JavaScript environment.
Declaration
public string ValuesScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
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