-
5 Jan 2010 1:23 AM #1
Collapsible panel?
Collapsible panel?
hi,
i have a question...
how can make a panel collapsible?
thanks...
-
5 Jan 2010 1:44 AM #2
Code:panel.setCollapsible(true);
-
5 Jan 2010 2:21 AM #3
thanks for the answer...
i have a vertical panel but it doesn't have a method called setCollapsible(),
what can i do?
-
5 Jan 2010 3:38 AM #4
ok let me be more clear.
i want to have three panels in another container. the left and right panels must be collapsible.
the center panel must resize automatically when the left and right panels collapse and expand.
how can i do that?
thanks a lot...
-
5 Jan 2010 4:28 AM #5
A contentpanel is the only panel that can be collapsed
-
5 Jan 2010 5:39 AM #6
thanks sven.
i have done what i wanted so far. but there is one thing that i couldn't manage to do.
I want to make the left and right panels come collapsed. I wrote:
eastPanel.setExpanded(false);
westPanel.setExpanded(false);
but their header bars stand there and ">>" button doesn't work.
How can I make them collapsed first and expanded when I click "<<" or ">>" buttons?
-
5 Jan 2010 5:50 AM #7
ok i have found the answer sorry for asking before searching...
http://www.yui-ext.com/forum/showthread.php?p=392272


Reply With Quote