Pagination
Name | Movie Director | Movie Genre | Released |
---|---|---|---|
Close Encounters of the Third Kind | Steven Spielberg | Sci-Fi | 1997 |
Rocky | John G. Avildsen | Action | |
Brave Heart | Mel Gibson | Action |
@(await Html
.SimpleGrid(Model)
.AddColumnsForModel()
.AddPager(options =>
{
options.RowsPerPage = 3;
options.DisplayPagerTop = true;
options.DisplayPagerBottom = true;
options.DisplayTotal = true;
options.RowsPerPageOptions =
new[] { 3, 5, 10, 50, 1000 };
})
.RenderAsync())