The Remote Pagination plugin is great.
I'm currently using it to perform Ajax sorting of table columns.
My question is, how can I call a JavaScript function after the page is updated?
So here's what I'd like:
- User clicks table column
- Ajax call is made to the server
- Sort is performed
- New sorted model is returned
- Div with proper id on page is updated with new sort order
- -- Everything up to this point works fine --
- Now I would like to make a call to a JavaScript function. What's the best way to hook into the events and do this?
Thanks!
- Dean Del Ponte