Table of Contents

Class EntitySummaryView

Namespace
The.Web.Entities
Assembly
Instagile.Web.Client.dll
public class EntitySummaryView : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender
Inheritance
EntitySummaryView
Implements
Inherited Members

Properties

Columns

The columns to render. When null, the entity's default list columns are extracted from its metadata (the same set the list views show). Callers that already hold the column models - e.g. a list view that also needs them for preloading - should pass them in to avoid re-extracting.

[Parameter]
public IReadOnlyList<ColumnModel>? Columns { get; set; }

Property Value

IReadOnlyList<ColumnModel>

Commands

Optional content rendered in the top-right status area after the message chip, e.g. a row command bar.

[Parameter]
public RenderFragment? Commands { get; set; }

Property Value

RenderFragment

Entity

[Parameter]
[EditorRequired]
public IEntity Entity { get; set; }

Property Value

IEntity

Methods

BuildRenderTree(RenderTreeBuilder)

Renders the component to the supplied RenderTreeBuilder.

protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder RenderTreeBuilder

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()