Pagination

« Sorting Search »
Name Movie Director Movie Genre Released
The Godfather The Godfather Mob 1972
Citizen Kane Orson Welles Drama 1941
The Shawshank Redemption Frank Drabont Drama 1994
Pulp Fiction Quentin Tarantino Action 1994
Casablanca Michael Curtiz Drama 1942
2001: A Space Odyssey Stanley Kubrick Sci-Fi 1968
@(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())