Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple question (may not be a simple answer!) with the WebGrid in MVC4.

I have a functional Grid like so

<div id="Submitted">
    @Html.Grid(
        Model.Submitted, displayHeader: false, fieldNamePrefix: "Submitted_", ajaxUpdateContainerId: "Submitted",
        columns: new WebGridColumn[]{
        new WebGridColumn(){ ColumnName = "Date",Header = "Date",Style = "",CanSort = false,Format = x => x.Date.ToString(Globals.Default.DATEFORMAT) },
        new WebGridColumn(){ ColumnName = "ID",Header = "Review",Style = "", CanSort = false, Format = x=>@Html.ActionLink("Review","Review","Company",new{ID = x.ID },new{})  }
    })
</div>

When reloading the "Submitted" div with Ajax when the next page button is clicked, it generates the next page fine - but it's going to the original action on the controller, which should be a full page.

How does it filter out everything other than the grid itself? with some clever C# code or jQuery?

EDIT: To clarify, I'm not asking how to do the paging better, or myself, as far as I'm concerned the default paging with the webgrid is working perfectly as it should - I'm asking how the WebGrid does it's ajax paging when posting back to an action which is returning a FULL page.

share|improve this question

2 Answers

up vote 1 down vote accepted

It does this using jquery load() and functionality that allows it to select just the relevant incoming nodes. This is taken from http://msdn.microsoft.com/en-us/magazine/hh288075.aspx

To allow the script to be applied just to a WebGrid, it uses jQuery selectors to identify elements with the ajaxGrid class set. The script establishes click handlers for the sorting and paging links (identified via the table header or footer inside the grid container) using the jQuery live method (api.jquery.com/live). This sets up the event handler for existing and future elements that match the selector, which is handy given the script will be replacing the content.

share|improve this answer
Thanks - Exactly what I was looking for :) – m.t.bennett Jan 28 at 7:34

You should put your grid in a partialview and update it by Ajax. In controller you should find the request's type. If it is a ajax request(by Request.IsAjaxRequest() ) you must return the partialview, otherwise you must return the original view.

If you are using ajax.beginform you must do something like this:

@using (Ajax.BeginForm("Index", new AjaxOptions { OnFailure = "searchFailed", HttpMethod = "POST", UpdateTargetId = "Submitted" }))
    {
    ...
    }

<div id="Submitted">
   @Html.Partial("_partialviewname", Model)    
</div>

rn and in controller:

  public ActionResult Index(int? page)
    {
      ...
      if (Request.IsAjaxRequest())
        {
          return PartialView("_partialviewname", db.model)  
         }
      return View(db.model)

    }
share|improve this answer
While this is an alternative, it has nothing to do with the question. This could be a solution if my original question proves the WebGrid way is inefficient – m.t.bennett Jan 25 at 5:28
@m.t.bennett, Ok I think I misunderstood your question. If you want to just load your grid each time, you must put it in a partialview. Is this your case? – Bahman Nikkhahan Jan 25 at 5:53
Functionally my code is working and displaying as it should. My question is about how it manages to strip all content from the page and just return the webgrid on the ajax request – m.t.bennett Jan 25 at 6:43
I hope the above update helps – Bahman Nikkhahan Jan 25 at 7:03
Your still not understanding me, i want to know how the webgrid functions on its ajax postback, not how to MAKE it function. – m.t.bennett Jan 25 at 9:27
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.