Tags: ajax, application, asp, aspnet, collapsible, control, extendar, extender, flickering, net, panel, web, working
Flickering in Collapsible Panel Extender Control.
On .Net » ASP.NET AJAX
3,441 words with 3 Comments; publish: Sun, 06 Jan 2008 00:30:00 GMT; (10062.50, « »)
Hello,
I am using Collapsible panel extendar control in my web asp.net application. Everything is working fine but there is one problem.
I have used this control inside my Gridview control. So when page loads initially for half a second I can see that Panel although i have
set collapsed property to true. So what is this problem..
Following my Collapsible panel control
<cc1:collapsiblepanelextenderid="CollapsiblePanelExtender1"runat="server"collapsecontrolid="LinkButton1"collapsed="true"collapsedtext="Show Details..."enableviewstate="false"expandcontrolid="LinkButton1"expanddirection="Vertical"CollapsedSize="0"expandedtext="Hide Details"SuppressPostBack="true"targetcontrolid="Panel1"textlabelid="Label1"></cc1:collapsiblepanelextender>
Please help me...as it is very important for me...
thanks all of them who read my problem..
Regards,
http://net-ajax.itags.org/q_dotnet-ajax_23988.html
All Comments
Leave a comment...
- 3 Comments

You can set the initial height to 0px and the overflow to hidden.
<asp:Panel id="Container" runat="server" Height="0px" style="overflow:hidden">...Controls that will get collapsed...</asp:Panel>
#1; Sun, 06 Jan 2008 00:31:00 GMT

Hi,
Thanks a lot. My problem solved easily. Thank you very much.
I would like to ask one other question. When I use UpdatePanel control then all the validation controls are not working.
What would be the solution for that ?
Thanks in advance.
Regards,
#2; Sun, 06 Jan 2008 00:32:00 GMT

- Please start a new forum post for that issue with more details on what the problem is and a simple repro.#3; Sun, 06 Jan 2008 00:33:00 GMT