Class EntityListViews<T>
List section(s) for a statically-typed entity query. In high density this is a single sectioned EntityListView<T> table; in low density it is a vertical stack of cards, so a phone doesn't get a horizontally-scrolling spreadsheet. Registers list commands.
public class EntityListViews<T> : EntityListViewBase<T>, IComponent, IHandleEvent, IHandleAfterRender, IDisposable where T : IEntity<T>
Type Parameters
T
- Inheritance
-
EntityListViews<T>
- Implements
- Inherited Members
Remarks
See DynamicEntityListViews if you don't have a static type.
Fields
CardHeightPixels
public const float CardHeightPixels = 60
Field Value
Properties
OuterChrome
[CascadingParameter]
public ChromeContext? OuterChrome { get; set; }
Property Value
OwnsCount
Whether this component resolves the query count itself. EntityListViews<T> returns false while delegating to an inner EntityListView<T>.
protected override bool OwnsCount { get; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Renders the component to the supplied RenderTreeBuilder.
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builderRenderTreeBuilder
OnListParametersSet()
Per-parameter-set hook for subclass chrome handling. Runs on every parameter set, before the column set is ensured.
protected override void OnListParametersSet()