Definition
Assembly: CloudNimble.BlazorEssentials.dll Namespace: CloudNimble.BlazorEssentials.Controls Inheritance: Microsoft.AspNetCore.Components.ComponentBaseSyntax
Type Parameters
TItem-
Constructors
.ctor
Syntax
Properties
Data
The information you will be binding this control against. You should typically use the two-way binding syntax of ‘@bind-Data’ to connect this information to the control.Syntax
Property Value
Type:TItem
DataChanged
The event handler used to update the Parent control aboutData changes during two-way binding.
Syntax
Property Value
Type:Microsoft.AspNetCore.Components.EventCallback<TItem>
FailedContent
The content to display when theLoadingStatus list set to LoadingStatus.Failed.
Syntax
Property Value
Type:Microsoft.AspNetCore.Components.RenderFragment
LoadedContent
The content to display when theLoadingStatus list set to LoadingStatus.Loaded.
Syntax
Property Value
Type:Microsoft.AspNetCore.Components.RenderFragment<TItem>
LoadingContent
The content to display when theLoadingStatus list set to LoadingStatus.Loading.
Syntax
Property Value
Type:Microsoft.AspNetCore.Components.RenderFragment
LoadingStatus
The particular property containing the LoadingStatus that you want to track.. You should typically use the two-way binding syntax of ‘@bind-Data’ to connect this information to the control.Syntax
Property Value
Type:CloudNimble.BlazorEssentials.LoadingStatus
LoadingStatusChanged
The event handler used to update the Parent control aboutLoadingStatus changes during two-way binding.
Syntax
Property Value
Type:Microsoft.AspNetCore.Components.EventCallback<CloudNimble.BlazorEssentials.LoadingStatus>
NoResultsContent
The content to display when theLoadingStatus list set to LoadingStatus.Loaded and Data list either null,
or is a list that contains no objects.
Syntax
Property Value
Type:Microsoft.AspNetCore.Components.RenderFragment
NotLoadedContent
The content to display when theLoadingStatus list set to LoadingStatus.NotLoaded. This is typically the initial state
for a ViewModel.
Syntax
Property Value
Type:Microsoft.AspNetCore.Components.RenderFragment