CollapsiblePanelExtender does not work with CollapsedSize="0"
Posted
by
Ricardo Conte
on Stack Overflow
See other posts from Stack Overflow
or by Ricardo Conte
Published on 2012-11-01T10:59:31Z
Indexed on
2012/11/01
10:59 UTC
Read the original article
Hit count: 270
This "CollapsiblePanelExtender" works ok only if I use CollapsedSize="1". When using CollapsedSize="0" it collapses but does not show when clicked... Any ideas ?
<asp:CollapsiblePanelExtender
ID="CollapsiblePanelExtender1"
runat="server"
TargetControlID="pBody"
CollapseControlID="pHeader"
ExpandControlID="pHeader"
Collapsed="false"
TextLabelID="lblText"
CollapsedText="Click to Show Content..."
ExpandedText="Click to Hide Content..."
CollapsedSize="1"
AutoCollapse="False"
AutoExpand="False"
ScrollContents="True"
ExpandDirection="Vertical"
SuppressPostBack="true" >
</asp:CollapsiblePanelExtender>
© Stack Overflow or respective owner