I am trying to collapse the JXCollapsiblePane by setting the JXCollapsiblePane.setCollapsed(true).
But it doesn't seem to work.. What can be a possible reason?
I am trying to collapse the JXCollapsiblePane by setting the JXCollapsiblePane.setCollapsed(true).
But it doesn't seem to work.. What can be a possible reason?
In what kind of a layout is the collapsible pane contained? Sometimes the layout managers prevent a pane to collapse. I had the best experience if I put the JXCollapsiblePane into the NORTH part of a JPanel with BorderLayout. If that doesn't help, post a small code example so others can try it out as well.