Are there any html helpers for page navigation. eg. if i have 1000 records to display, i want to display the Previous 1 2 3 4 ... etc Next link stuff under the filtered collection.
Anyone know of anything out there?
|
Are there any html helpers for page navigation. eg. if i have 1000 records to display, i want to display the Previous 1 2 3 4 ... etc Next link stuff under the filtered collection. Anyone know of anything out there?
| |||
|
feedback
|
|
| |||||||||
feedback
|
|
If you are creating a table of data from JSON data, I highly recommend the YUI (Yahoo UI Library) DataTable component (http://developer.yahoo.com/yui/datatable/). It does paging very well and you have the option of returning the whole record set to start with and then paging through that all client-side or returning a paged set from the server. Probably won't fit your scenario, but just thought I'd mention it. | |||
|
feedback
|
|
I have a paging grid in my Dynamic Data for MVC sample application, but the grid is hand rendered. The data is using PagedList, which came from Rob Conery (who in turn I think got it from ScottGu). I've been thinking about what a paged-grid helper might look like for MVC... | |||
feedback
|
|
What I've done for paging so far is create a Pager control, It takes a paging url, html element id for update, page number, page size and total count. The paging url is of the form controller/action where the action returns an html string (the rendered page of data) The pager appends a list of javascript links for the pages. These links call a jQuery based ajax function that hits the paging url. Each page click replaces the current contents of the html element with the results of the ajax call. Something like this:
The javascript posts to the paging url, so the action will need to then do something like: int.TryParse( Request.Params[ "pageNumber" ], out page ) int.TryParse( Request.Params[ "pageSize" ], out size ) ) and use the results with your data access components to grab the data page, render it as html and return it. Hope that helps, I can expand upon it if needed. | |||
|
feedback
|