hi all,
i use collapsible panel extender for one of my page. On my development machine with IE8, everything works fine. when I click on panelA, panelB will be displayed (expanded?). and when I click panelA again, panelB will be collapsed.
However, after moving this application to development server, two users cannot get this to work. What happened was when user click on panelA, panelB will expand and then immediately collapsed. So they cannot ever get to see the content in panelB. One user is using IE6 and the other is using IE8. So i don't think this is browser problem? Does anybody know what the possible problem is?
Here's my code:
<cc2:CollapsiblePanelExtender ID="cpeUpload" runat="server" TargetControlID="panelContentUploaded" ExpandControlID="panelUploaded" CollapseControlID="panelUploaded" SuppressPostBack="True" Enabled="True" CollapsedText="Click to Show Content.." ExpandedText="Click to Hide Content.." ScrollContents="false"></cc2:CollapsiblePanelExtender><asp:Panel ID="panelUploaded" runat="server" Width="80%" BackColor="Lavender"><label style="font-weight:bold; font-size:small; color:Black"> Uploaded files</label></asp:Panel><br /><asp:Panel ID="panelContentUploaded" runat="server" Height="160px" Width="100%"><asp:DetailsView ID="DetailsView2" runat="server"> ....... .....</asp:DetailsView><br /></asp:Panel>