Class SfDataBoundComponent
Inheritance
SfDataBoundComponent
Assembly: Syncfusion.Blazor.dll
Syntax
public abstract class SfDataBoundComponent : SfBaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
SfDataBoundComponent()
Declaration
protected SfDataBoundComponent()
Properties
DataManager
Declaration
[JsonIgnore]
public DataManager DataManager { get; set; }
Property Value
MainParent
Declaration
protected virtual SfBaseComponent MainParent { get; set; }
Property Value
Methods
OnAfterRenderAsync(bool)
Method invoked after each time the component has been rendered.
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
| Type |
Name |
Description |
| bool |
firstRender |
Set to true for the first time component rendering; otherwise gets false.
|
Returns
| Type |
Description |
| Task |
A System.Threading.Tasks.Task representing any asynchronous operation.
|
Overrides
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
| Type |
Description |
| Task |
A System.Threading.Tasks.Task representing any asynchronous operation.
|
Overrides
Declaration
protected override Task OnParametersSetAsync()
Returns
Overrides
SetDataManager<T>(object)
Declaration
protected object SetDataManager<T>(object dataSource)
Parameters
| Type |
Name |
Description |
| object |
dataSource |
|
Returns
Type Parameters
Implements