Provides a simple and convenient data grid component for common grid rendering scenarios and serves as a reference architecture and performance baseline for building data grid components. If you're using Entity Framework Core for your grid IQueryables, consider using the <a href="https://www.nuget.org/packages/Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter">Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter</a> package. This package was built from the source code at https://github.com/dotnet/dotnet/tree/87bc0b04e21d786669142109a5128c95618b75ed
$ dotnet add package Microsoft.AspNetCore.Components.QuickGridMicrosoft.AspNetCore.Components.QuickGrid provides a simple and convenient data grid component for common grid rendering scenarios.
IQueryable, EF Core IQueryable, and remote data sourcesTo use Microsoft.AspNetCore.Components.QuickGrid, follow these steps:
dotnet add package Microsoft.AspNetCore.Components.QuickGrid
For various QuickGrid demonstrations, see the QuickGrid for Blazor sample app.
QuickGrid<TGridItem>: The component that displays the gridTemplateColumn: Represents a column whose cells render a supplied templatePropertyColumn: Represents a column whose cells display a single valuePaginator: A component that provides a user interface for PaginationStatePaginationState: Holds state to represent pagination in a QuickGrid<TGridItem>GridSort<TGridItem>: Represents a sort order specification used within QuickGrid<TGridItem>GridItemsProvider<TGridItem>: A callback that provides data for a QuickGrid<TGridItem>For additional documentation and examples, refer to the official documentation on the Blazor QuickGrid component.
is released as open-source under the . Bug reports and contributions are welcome at .
Microsoft.AspNetCore.Components.QuickGrid