UpdatePanelAnimationExtender and nested UpdatePanel
am 30.01.2008 13:50:51 von Clodoaldo PintoI'm trying to make animations work with nested UpdatePanels.
The outermost UpdatePanel is correctly FadedOut and FadedIn but the
inner UpdatePanel is only FadedOut, it is not FadedIn OnUpdated:
protected void DropDownList_SelectedIndexChanged(object sender,
EventArgs e)
{
System.Threading.Thread.Sleep(1000);
}
What am I missing?
Regards, Clodoaldo Pinto Neto