tags:

views:

26

answers:

1

hi,

I have a gird with user data around like 5000 users in the grid.. right now I am displaying all the users in the grid.. but I need to make it like only 500 user for page.. so i need to implement paging in the grid with previous and next buttong on the bottom of the page.. can any body tell me how to do this?

thanks

+2  A: 

The Fluid Pager Widget, from their Infusion framework, handles this issue really elegantly on the client side.

If you want to send fewer than 5k records to the browser at a time, you would still need to bake that intelligence into your server-side code.

Drew Wills