Is it possible to implement server side sorting and pagging in dhtml grid?
I want to imp开发者_JAVA百科lement DHTML grid . Which required server side sorting and pegging with ajax support. Dose any one having any idea about how to implement this.
If you want to implement server side sorting then it does not matter what technology you are using in the front end.
On a conceptual level you can do the following things:
- Write a SortingServlet which takes your grid and sorts it according to the request parameters passed to it and renders the output in the form of json(not strictly required but good to have)
- Use jQuery to make a Ajax call to this servlet and then format the response when you get it back.
精彩评论