NextGrid
Definition
Namespace: BergSoft.UI.Blazor
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>