I have an update panel for a form, the form has several cascading dropdowns that use postback to populate the next one.
in the animation for OnUpdating and OnUpdated I have the background fade out then fade in; however, after the fadeout the panel postback occurs and the fadein never happens. does the postback interupt the animation sequence?
<ajx:UpdatePanelAnimationExtender ID="MyUpdatePanelAnimationExtender" runat="server" TargetControlID="UpdatePanel_Service" ><Animations><OnUpdating><Sequence><Parallel duration=".30" Fps="30"><FadeOut AnimationTarget="UpdatePanel_Service" minimumOpacity=".25" /></Parallel></Sequence></OnUpdating><OnUpdated><Sequence><Parallel duration=".30" Fps="30"><FadeIn AnimationTarget="UpdatePanel_Service" maximumOpacity="1.0" /></Parallel></Sequence></OnUpdated></Animations></ajx:UpdatePanelAnimationExtender>