Donate

ASP.NET MVC WebGrid In Partial View Redirects To Blank Page During Pagination

Hello,

I've created an ASP.NET MVC website that loads a partial view with a WebGrid control on ajax call. When I tested navigating to next record set, the WebGrid performs a postback and then redirects to a blank page. Not only that, the WebGrid control also lost it's css style. After doing some research on it's properties, I basically encountered a property called ajaxUpdateContainerId. After including that property in the WebGrid control, the pagination works fine and does not redirect to a blank page.
Original Code:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
@{
    var grid = new WebGrid(
        canPage: true, 
        canSort: true, 
        rowsPerPage: 10);
    grid.Bind(Model.AddressList, rowCount: Model.AddressList.ToList().Count);
    grid.Pager(WebGridPagerModes.NextPrevious);
    @grid.GetHtml(tableStyle: "webGrid",
                            htmlAttributes: new { id = "grid" },
                            headerStyle: "header",
                            alternatingRowStyle: "alt",
                            columns: grid.Columns(
                                        grid.Column("AddressLine1", "Address Line", canSort: true),
                                        grid.Column("City", "City", canSort: true),
                                        grid.Column("PostalCode", "Postal Code", canSort: true)
                            ));
}

Screenshot:
ASP.NET MVC WebGrid In Partial View Redirects To Blank Page During Pagination

Updated Code:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@{
    var grid = new WebGrid(
        canPage: true,
        rowsPerPage: 10,
        canSort: true,
        ajaxUpdateContainerId: "grid"
    );
    
    grid.Bind(Model.AddressList, rowCount: Model.AddressList.ToList().Count);
    grid.Pager(WebGridPagerModes.All);
}
 
@grid.GetHtml(
    htmlAttributes: new { id = "grid" },
    tableStyle: "webGrid",
    headerStyle: "header",
    alternatingRowStyle: "alt", 
    columns: grid.Columns(
             grid.Column("AddressLine1", "Address Line", canSort: true),
             grid.Column("City", "City", canSort: true),
             grid.Column("PostalCode", "Postal Code", canSort: true)
    )
)

Screenshot:
ASP.NET MVC WebGrid In Partial View Redirects To Blank Page During Pagination

Comments

  1. Really saved my time. Thanks for the blog :)

    ReplyDelete
    Replies
    1. Your welcome!

      Glad that this post was helpful to you.

      Cheers! :-)

      Delete

Post a Comment

Donate

Popular Posts From This Blog

WPF CRUD Application Using DataGrid, MVVM Pattern, Entity Framework, And C#.NET

How To Insert Or Add Emojis In Microsoft Teams Status Message

Bootstrap Modal In ASP.NET MVC With CRUD Operations