Executing JavaScript after a GridView's paging callback

cedricdeer

New Member
I have a GridView with EnableSortingAndPagingCallbacks enabled. When the user clicks to change pages, a callback is performed and the GridView is updated. I need to run a JavaScript function immediately after this happens so I can perform some client-side actions on the new page of data. How can I accomplish this?The closest I've found to my question is this: How to have a javascript callback executed after an update panel postback?. However, using the pageLoad() function won't work here because pageLoad() doesn't seem to be triggered after a GridView callback.I need to have this work with IE7, or otherwise I'd use the DOMSubtreeModified event listener.
 
Top