The flow you are seeing is something like this:
I think there are at least two ways around this issue. It seems you have almost all the javascript you need, but your pageRequest is asynchronous, so the javascript thread continues and starts you just need to work around AnimationExtender starting the animation .
Perhaps a bit of on a hack, but try thisclick.
Option 1:
Alternatively, can't you disable
Option 2: Re-disable the Animation Extender once the animation has finished with. This should work, as long as the playAnimation call is blocking, which it probably is:
As an aside, it seems your general approach may face issues if there is a delay in receiving the pageRequest. It may be a bit weird to click a button and several seconds later have the animation happen. It may be better to either pre-load the data, or to pre-fill the div with some "Loading..." thing, make it about the right size, and then populate the actual contents when it arrives.
