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 7798673
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T00:04:11+00:00 2026-06-02T00:04:11+00:00

I have a class which extends a JPanel. Code below: public class Test extends

  • 0

I have a class which extends a JPanel. Code below:

public class Test extends JPanel implements Testnterface {
    private JScrollPane listScroller;

    DefaultListModel model;
    private JList requestList;    
    public Test() {

        String title = "Stackoverflow Question";
        setBorder(BorderFactory.createTitledBorder(title));
        model = new DefaultListModel();
     requestList = new JList(); // create a list
        listScroller = new JScrollPane(requestList); // create a scrollbar to the list
        listScroller.setPreferredSize(new Dimension(250, 80));

        setLayout(null);
        add(listScroller); // even though I add the scrollPane, nothing is displayed   
    }
 }

I updated the code. I can’t seem to get my JScrollPane to be displayed on my JPanel even though I add it. Anyone got any ideas?

  • 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-06-02T00:04:11+00:00Added an answer on June 2, 2026 at 12:04 am

    I had the same issue and solved it by wrapping scroll pane with JPanel:

    final JScrollPane jScrollPane = new JScrollPane(list,
         JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
         JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
    
    final JPanel panel = new JPanel(new BorderLayout(BORDER_SIZE, BORDER_SIZE));
    panel.setBorder(BorderFactory.createEmptyBorder(BORDER_SIZE, BORDER_SIZE, 
          BORDER_SIZE, BORDER_SIZE));
    
    panel.add(jScrollPane);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote this code: public class FileViewer extends JPanel implements ActionListener { /** *
I have this class which creates a grid: class GridPane extends JPanel{ public GridPane(int
I have a class whitch extends JPanel: public class ButtonPanel extends JPanel { private
Hi Experts: I have a class which extends JPanel now ShapePanel (Sp) this gets
I have created a class called SimpleCanvas which extends the JPanel class, and I
Class SampleFiveA extends JPanel. This contains textfields, one below the other, each of which
I have a class (Timeline) which extends JPanel. The Timeline Panel contains many JLabels
I have a class which extends JScrollPane, its viewport is another class which extends
I have class A which extends the Activity class. This class is in package
I am trying to create downloading progress. I have my class which extends AsyncTask:

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.