show/hide this revision's text 3 reworded

The flow you are seeing is something like this:

  • Click on button
  • AnimationExtender catches action and call clickOn callback
  • linkPostback starts asynchronous request for page and then returns flow to AnimationExtender
  • Animation begins
  • pageRequest returns and calls playAnimation, which starts the animation again
  • 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:

  • Use CSS to hide Hide the problem AnimationExtender button (#ctl00_btnOpenList {display: none}).
  • Create and add a new button of your own that calls plays the animation. This should be as simple as setting the AE button's style to "display: none;" and having your linkPostback() functionown button call linkPostback().
  • 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.

    show/hide this revision's text 2 fixed alternate solution

    It seems you have all the javascript you need, but your pageRequest is asynchronous, so the javascript thread continues and starts the animation.

    Perhaps a bit of a hack, but try this:

    1. Use CSS to hide the problem button (#ctl00_btnOpenList {display: none}).
    2. Create a new button that calls your linkPostback() function.

    Alternatively, can't you disable the Animation Extender in linkPostback?once the animation has finished with:

    function linkPostback() {
    
        AnimationExtender.Enabled = false;
        var prm = Sys.WebForms.PageRequestManager.getInstance();
        prm.add_endRequest(playAnimation)
    }
    
    function playAnimation() {
    
        AnimationExtender.Enabled = true;
        var onclkBehavior = $find("ctl00_btnOpenList").get_OnClickBehavior().get_animation();
        onclkBehavior.play();
        AnimationExtender.Enabled = false;
    }
    
    show/hide this revision's text 1

    It seems you have all the javascript you need, but your pageRequest is asynchronous, so the javascript thread continues and starts the animation.

    Perhaps a bit of a hack, but try this:

    1. Use CSS to hide the problem button (#ctl00_btnOpenList {display: none}).
    2. Create a new button that calls your linkPostback() function.

    Alternatively, can't you disable the Animation Extender in linkPostback?:

    function linkPostback() {
    
        AnimationExtender.Enabled = false;
        var prm = Sys.WebForms.PageRequestManager.getInstance();
        prm.add_endRequest(playAnimation)
    }
    
    function playAnimation() {
        AnimationExtender.Enabled = true;
        var onclkBehavior = $find("ctl00_btnOpenList").get_OnClickBehavior().get_animation();
        onclkBehavior.play();
    }