Class CheckedListView<T>
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
OnSelectionChanged
[Parameter]
public EventCallback<IReadOnlyCollection<Guid>> OnSelectionChanged { get; set; }
Property Value
OuterFieldContext
[CascadingParameter]
public FieldContext? OuterFieldContext { get; set; }
Property Value
Query
[Parameter]
public IFrozenQuery<T>? Query { get; set; }
Property Value
- IFrozenQuery<T>
ShowItemSelection
[Parameter]
public Func<IEntity, bool>? ShowItemSelection { get; set; }
Property Value
Type
[Parameter]
[EditorRequired]
public IEntityInfo? Type { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Renders the component to the supplied RenderTreeBuilder.
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builderRenderTreeBuilder
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()