17

I've searched the documentation (http://msdn.microsoft.com/en-us/library/system.web.helpers.webgrid.webgrid(v=vs.111).aspx), and found "canPage: false" - which does not work. Saying there is no parameter named 'canPage'.

Other sites have said 'autoSortAndPage: false' works, but it hasn't worked for me.

Code:

<div id="grid">
    @grid.Html(canPage: false,
      // the rest of my grid stuff
    );
</div>

How can I get rid of this paging?

McGarnagle
  • 101,349
  • 31
  • 229
  • 260
Protected Identity
  • 241
  • 1
  • 2
  • 11

1 Answers1

18

It's canPage, but that's a parameter of the WebGrid constructor.

@{
    var grid = new WebGrid(canPage: false,
      // ... etc
    );
}

<div id="grid">
    @grid.GetHtml()
</div>
McGarnagle
  • 101,349
  • 31
  • 229
  • 260