Class IgbBaseGenericDataSource
The base class for generic data sources.
Inheritance
System.Object
IgbBaseGenericDataSource
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbBaseGenericDataSource : BaseRendererElement, JsonSerializable
Constructors
IgbBaseGenericDataSource()
Declaration
public IgbBaseGenericDataSource()
Properties
FilterExpressions
Gets the current filter that is applied to the data source.
Declaration
public IgbFilterExpressionCollection FilterExpressions { get; protected set; }
Property Value
GroupDescriptions
Gets the current grouping that is applied to the data source.
Declaration
public IgbDataSourceGroupDescriptionCollection GroupDescriptions { get; protected set; }
Property Value
SortDescriptions
Gets the current sort that is applied to the data source.
Declaration
public IgbDataSourceSortDescriptionCollection SortDescriptions { get; protected set; }
Property Value
SummaryDescriptions
Gets the current summaries that are applied to the data source.
Declaration
public IgbDataSourceSummaryDescriptionCollection SummaryDescriptions { get; protected set; }
Property Value
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
GetCurrentFilterExpressions()
Declaration
public IgbFilterExpressionCollection GetCurrentFilterExpressions()
Returns
GetCurrentFilterExpressionsAsync()
Declaration
public Task<IgbFilterExpressionCollection> GetCurrentFilterExpressionsAsync()
Returns
GetCurrentGroupDescriptions()
Declaration
public IgbDataSourceGroupDescriptionCollection GetCurrentGroupDescriptions()
Returns
GetCurrentGroupDescriptionsAsync()
Declaration
public Task<IgbDataSourceGroupDescriptionCollection> GetCurrentGroupDescriptionsAsync()
Returns
GetCurrentSortDescriptions()
Declaration
public IgbDataSourceSortDescriptionCollection GetCurrentSortDescriptions()
Returns
GetCurrentSortDescriptionsAsync()
Declaration
public Task<IgbDataSourceSortDescriptionCollection> GetCurrentSortDescriptionsAsync()
Returns
GetCurrentSummaryDescriptions()
Declaration
public IgbDataSourceSummaryDescriptionCollection GetCurrentSummaryDescriptions()
Returns
GetCurrentSummaryDescriptionsAsync()
Declaration
public Task<IgbDataSourceSummaryDescriptionCollection> GetCurrentSummaryDescriptionsAsync()
Returns
QueueAutoRefresh()
Declaration
public void QueueAutoRefresh()
QueueAutoRefreshAsync()
Called to manually queue a refresh of the data source.
Declaration
public Task QueueAutoRefreshAsync()
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
Implements