Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable Paging in WebGrid

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?

like image 236
Protected Identity Avatar asked Sep 23 '12 06:09

Protected Identity


1 Answers

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>
like image 59
McGarnagle Avatar answered Oct 16 '22 18:10

McGarnagle