Table of Contents

Class CheckedListView<T>

Namespace
The.Web.Entities
Assembly
Instagile.Web.Client.dll
public class CheckedListView<T> : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable where T : IEntity<T>

Type Parameters

T
Inheritance
CheckedListView<T>
Implements
Inherited Members

Properties

CanSelectAll

[Parameter]
public bool CanSelectAll { get; set; }

Property Value

bool

OnSelectionChanged

[Parameter]
public EventCallback<IReadOnlyCollection<Guid>> OnSelectionChanged { get; set; }

Property Value

EventCallback<IReadOnlyCollection<Guid>>

OuterFieldContext

[CascadingParameter]
public FieldContext? OuterFieldContext { get; set; }

Property Value

FieldContext

Query

[Parameter]
public IFrozenQuery<T>? Query { get; set; }

Property Value

IFrozenQuery<T>

ShowItemSelection

[Parameter]
public Func<IEntity, bool>? ShowItemSelection { get; set; }

Property Value

Func<IEntity, bool>

Type

[Parameter]
[EditorRequired]
public IEntityInfo? Type { get; set; }

Property Value

IEntityInfo

Methods

BuildRenderTree(RenderTreeBuilder)

Renders the component to the supplied RenderTreeBuilder.

protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder RenderTreeBuilder

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

public void Dispose()

OnParametersSet()

Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.

protected override void OnParametersSet()

OnParametersSetAsync()

Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.

protected override Task OnParametersSetAsync()

Returns

Task

A Task representing any asynchronous operation.