Search code examples
c#asp.net-mvc-3pagination

Paging Results .net and the grid concept


I´ve been checking .net available paging options (telerik, others) and one recurrent situation that I found is the grid concept to refer to that functionality. By grid concept I mean, columns and rows (even including column name) giving less design customization possibilities.

Does anyone know any implementation or library for .net mvc in order to deploy paging results using more fancy design implementations not attached to column display idea. brgds, sebastian


Solution

  • Not totally sure I follow what your trying to do..but for paging data in a grid/column type layout I recommend the jQuery Datatables plugin. Its very customizable/flexible. its allows for styling via css and handles paging, filtering, and sorting among other features.

    you can learn more about the plugin HERE

    and THIS is a great article explaining "server-side processing" with asp.net MVC using the plugin.

    Hope this helps.