UpdatePanelAnimationExtender: No animation when certain button clicked - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T15:41:18Zhttp://stackoverflow.com/feeds/question/484520http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/484520/updatepanelanimationextender-no-animation-when-certain-button-clicked1UpdatePanelAnimationExtender: No animation when certain button clickedNick Spacek2009-01-27T18:04:56Z2009-02-03T21:39:16Z
<p>Hi there,</p>
<p>I have a GridView inside an UpdatePanel that is populated when a search is performed on the page. When it is populated or the page changed, it performs a fade animation. There are other operations that I want to perform that update the UpdatePanel, but I don't want these to perform these fade animations. The closest I have found on the ASP forums is: <a href="http://forums.asp.net/p/1037038/1487096.aspx" rel="nofollow">http://forums.asp.net/p/1037038/1487096.aspx</a></p>
<p>The problem with the solution proposed in that thread is that there is no way to catch the Updated and Updating events to animate. Any ideas?</p>
<p>Thanks,</p>
<p>Nick</p>
http://stackoverflow.com/questions/484520/updatepanelanimationextender-no-animation-when-certain-button-clicked/485943#4859431Answer by RSolberg for UpdatePanelAnimationExtender: No animation when certain button clickedRSolberg2009-01-28T00:19:25Z2009-01-28T00:19:25Z<p>Nick,</p>
<p>Is it possbile to consider using JQuery to do the animations? May give you more control on the elements than just the use of the UpdatePanelAnimationExtender.</p>
<p><a href="http://jquery.com/" rel="nofollow">http://jquery.com/</a></p>
<p><a href="http://docs.jquery.com/UI/Effects" rel="nofollow">http://docs.jquery.com/UI/Effects</a></p>
http://stackoverflow.com/questions/484520/updatepanelanimationextender-no-animation-when-certain-button-clicked/509008#5090080Answer by Nick Spacek for UpdatePanelAnimationExtender: No animation when certain button clickedNick Spacek2009-02-03T21:39:16Z2009-02-03T21:39:16Z<p>Just wanted to add some code for this answer, since I managed to discover a good solution to this using code from different places. :) (some was pasted, some edited; the final version of this isn't tested, but you should be able to get the idea from it!)</p>
<pre><code>var postbackElement; // Global to store the control that initiated the postback
// Using JQuery here
$(document).ready(function()
{
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(beginRequest);
Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(pageLoaded);
});
function beginRequest(sender, args)
{
postbackElement = args.get_postBackElement();
// This method can be used to do animations in place of OnUpdating
if(postbackElement.id == "YourControlId")
{
// or something like: if(id == "<%= YourControl.ClientID %>")
// run your animation here
}
}
function pageLoaded(sender, args)
{
// This method can be used to do animations in place of OnUpdated
// Also, the args variable holds a list of panels that are being updated;
// I didn't use this though.
// This condition is true on the first page load
if (typeof(postbackElement) === "undefined")
{
return;
}
if(postbackElement.id == "YourControlId")
{
// run your animation here
}
}
</code></pre>