Hello,
I am facing a problem with the Atlas June CTP (the April version works) and Firefox (v1.5.0.4) (IE works as desired).
Extenders (e.g. DragPanel CollapsePanel) do not work after an async post back to the server when PartialRendering for the ScriptManager is set to true. If PartialRendering is switched off, it works.
I tried a couple of solutions, but nothing worked (using only one extender, UpdatePanel mode set to "Always" ...)
I hope you can help ...
Bye,
Flaxon
Sample page:<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Test.aspx.vb" Inherits="Test" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Unbenannte Seite</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<atlas:ScriptManager ID="AtlasScriptManager" EnablePartialRendering="true" runat="server">
</atlas:ScriptManager>
<atlas:UpdatePanel Mode="Conditional" runat="server" ID="UpdatePanel1">
<ContentTemplate>
<asp:Panel ID="UserFormPanel" runat="server">
<asp:Panel ID="UserFormHandle" runat="server">
<asp:Image ID="ToggleImage" ImageUrl="~/App_Themes/CaesarDefault/images/minus_small.gif" runat="server" />
Test
</asp:Panel>
<asp:Panel ID="ContentPanel" runat="server">
<asp:Button ID="PostBackButton" Text="PostBackButton" runat="server" />
</asp:Panel>
</asp:Panel>
</ContentTemplate>
</atlas:UpdatePanel>
<atlasToolkit:DragPanelExtender ID="DragExtender" runat="server">
<atlasToolkit:DragPanelProperties
TargetControlID="UserFormPanel"
DragHandleID="UserFormHandle" />
</atlasToolkit:DragPanelExtender>
<atlasToolkit:CollapsiblePanelExtender ID="CollapseExtender" runat="Server">
<atlasToolkit:CollapsiblePanelProperties
TargetControlID="ContentPanel"
ExpandControlID="ToggleImage"
CollapseControlID="ToggleImage"
Collapsed="True" CollapsedSize="0"
ImageControlID="ToggleImage"
ExpandedImage="~/images/minus_small.gif"
CollapsedImage="~/images/plus_small.gif"
CollapsedText="expand"
ExpandedText="collapse"
SuppressPostBack="true" />
</atlasToolkit:CollapsiblePanelExtender>
</div>
</form>
</body>
</html>