Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6147537
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:07:14+00:00 2026-05-23T19:07:14+00:00

I have a panel being changed by an action which swaps out it’s child

  • 0

I have a panel being changed by an action which swaps out it’s child panel with a new panel that has a different minimum Size. I need to inform my JSplitPane that one of it’s children panels has changed so I can call updateToPreferedSize method. Is there an event that is already fired which I should listen for? If not, how do I throw an event that the parent can catch to notify it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T19:07:14+00:00Added an answer on May 23, 2026 at 7:07 pm

    The easiest way would be to fire a custom propertyChange event on the panel that swaps out the child, so that after it swaps out the child, it fires the event. Theres a good example here:
    http://download.oracle.com/javase/tutorial/javabeans/properties/bound.html

    Once you’ve done that, the JSplitpane can register a listener and listen for that property as described here:
    http://download.oracle.com/javase/tutorial/uiswing/events/propertychangelistener.html

    To sum it up, in the panel that swaps the child, you will need to initialize PropertyChangeSupport:

    private final PropertyChangeSupport pcs = new PropertyChangeSupport( this );
    

    Then when you swap out the panel:

    //All code to swap out the panel goes here
    this.pcs.firePropertyChange( "childUpdated", false, true );
    

    And in the JSplitPane, you need something like this:

    //...where initialization occurs:
    ...
    amountField.addPropertyChangeListener("childUpdated",
                                          new ChildUpdateListener());
    ...
    class ChildUpdateListener implements PropertyChangeListener {
        public void propertyChanged(PropertyChangeEvent e) {
            updateToPreferedSize();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have panel that is using group layout to organize some label. I want
I have a panel on an aspx page which contains an UpdatePanel. This panel
I have an Panel control that I need to maintain position across postbacks. I
I have a panel that draws alot of things. To make drawing effecient I
i have a panel (A), which contains 3 other panels (AA, AB, AC). Each
I have update panel that content check box, textbox, 3 DropDownList with CascadingDropDown extender.
I have a panel that is docked to the right side of a windows
I have a silverlight application which users can install out-of-browser . When the right-click
I have a Grid Panel that loads about 200 records from the server. I
I have an Ext Js panel that I am adding to my main TabPanel.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.