Library Blazor Components NextGrid

NextGrid

Definition

Namespace: BergSoft.UI.Blazor

Assembly: BergSoft.UI.Blazor.dll

A grid component that can render its items in a different layouts. It includes all standard features for grids such as sorting, grouping and editing.

razor
<NextGrid T="Sale" ItemsSource="Sales">
    <GridColumn HeaderText="Product" Size="80px">
        <CellTemplate>
            @context.Product
        </CellTemplate>
    </GridColumn>
</NextGrid>

Sign in