hot questions tagged animationextender - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T10:41:33Z http://stackoverflow.com/feeds/tag?tagnames=animationextender&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1177441/one-update-panel-updated-and-other-one-is-also-updated 1 One update panel updated and other one is also updated? Muhammad Akhtar 2009-07-24T12:48:22Z 2009-07-24T12:57:22Z <p>I have scenario, I have two update panels on the page (both have update mode='conditional'). If I update one update panel the other is automatically updated. This is first problem.</p> <p>I am using <strong>UpdatePanelAnimationExtender</strong>. If one update panel is updated, that don’t have updatepanelAnimationExtender other one also updated and that have updatepanelAnimationExtender, OnUpdatingUpdatePanel(); event is fired. As the documentation of updatepanelAnimationExtender says: <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/UpdatePanelAnimation/UpdatePanelAnimation.aspx" rel="nofollow">http://www.asp.net/AJAX/AjaxControlToolkit/Samples/UpdatePanelAnimation/UpdatePanelAnimation.aspx</a></p> <p><strong>OnUpdating</strong> - Generic animation played as when any <code>UpdatePanel</code> begins updating </p> <p><strong>OnUpdated</strong> - Generic animation played after the <code>UpdatePanel</code> has finished updating (but only if the <code>UpdatePanel</code> was changed) </p> <p><strong>Problem:</strong> <code>OnUpdating</code> fired and it worked backend and not finished because <code>onUpdated</code> only fired when an <code>UpdatePanel</code> Changed</p> http://stackoverflow.com/questions/49430/animation-extender-problems 1 Animation Extender Problems Dominic Godin 2008-09-08T10:29:53Z 2008-09-17T16:03:45Z <p>Hi,</p> <p>I have just started working with the AnimationExtender. I am using it to show a new div with a list gathered from a database when a button is pressed. The problem is the button needs to do a postback to get this list as I don't want to make the call to the database unless it's needed. The postback however stops the animation mid flow and resets it. The button is within an update panel.</p> <p>Ideally I would want the animation to start once the postback is complete and the list has been gathered. I have looked into using the ScriptManager to detect when the postback is complete and have made some progress. I have added two javascript methods to the page.</p> <pre><code>function linkPostback() { var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_endRequest(playAnimation) } function playAnimation() { var onclkBehavior = $find("ctl00_btnOpenList").get_OnClickBehavior().get_animation(); onclkBehavior.play(); } </code></pre> <p>And I’ve changed the btnOpenList.OnClientClick=”linkPostback();”</p> <p>This almost solves the problem. I’m still get some animation stutter. The animation starts to play before the postback and then plays properly after postback. Using the onclkBehavior.pause() has no effect. I can get around this by setting the AnimationExtender.Enabled = false and setting it to true in the buttons postback event. This however works only once as now the AnimationExtender is enabled again. I have also tried disabling the AnimationExtender via javascript but this has no effect.</p> <p>Is there a way of playing the animations only via javascript calls? I need to decouple the automatic link to the buttons click event so I can control when the animation is fired.</p> <p>Hope that makes sense.</p> <p>Thanks</p> <p>DG</p> http://stackoverflow.com/questions/559021/animationextender-close-by-clicking-ouside-the-div 0 AnimationExtender - close by clicking ouside the div Coder 2009-02-17T22:30:45Z 2009-02-17T22:30:45Z <p>I've just started working with the animationextender. It is being used for a login dialog that ideally will disappear if the user clicks outside of the login dialog. As in, the user hovers over a button, dialog appears. Users clicks the little X, it disappears. User clicks anywhere eles on the page, dialog disappears.</p> <p>Right now, the X works fine to close, and the hover makes it appear, but can't get a way to close it by clicking anywhere else. I tried using the form as the target, but then it closes the dialog even when clicking inside, which obviously is not good. </p> <p>Is this possible with AnimationExtender or do I need to find a new route?</p>