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

  • SEARCH
  • Home
  • 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 9153333
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:15:24+00:00 2026-06-17T12:15:24+00:00

I am adding JTable in a JScrollPane then adding scrollpane to the panel, then

  • 0

I am adding JTable in a JScrollPane then adding scrollpane to the panel, then adding panel to the frame but it doesn’t work here’s the code. I want to have scroll bar on table or frame that will make table scrollable so user can see it. I have tried many ways but non worked for me
here is the whole code

public class View extends JFrame {

private static final long serialVersionUID = 1L;

/**
 * Launch the application.
 */
//here in the main method i it adds in the JFrame everything

public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                View frame = new View();
                frame.setVisible(true);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

public void showData() throws SQLException, ParseException {

    panel = new JPanel();
    panel_1 = new JPanel();
    model_1 = new DefaultTableModel();
    model_2 = new DefaultTableModel();

    model_1.addColumn("Title");
    model_1.addColumn("Priority ");
    model_1.addColumn("DeadLine");
    model_1.addColumn("Time");
    model_1.addColumn("Progress");

    model_2.addColumn("Task Title");
    model_2.addColumn("Priority ");
    model_2.addColumn("DeadLine");
    model_2.addColumn("Time");
    model_2.addColumn("Done");

    Database obj = new Database();

    ArrayList<Task> list = obj.getTasks();
    for (int i = 0; i < list.size(); i++) {

        Task task = list.get(i);
        Object[] row = { task.title, task.priority, task.deadine,
                task.time, task.progress };

        // Comparing Dates

        Calendar currentDate = Calendar.getInstance();
        SimpleDateFormat formatter = new SimpleDateFormat("MM-d-yyyy");
        String dateNow = formatter.format(currentDate.getTime());

        java.util.Date systemDate = new SimpleDateFormat("MM-d-yyyy",
                Locale.ENGLISH).parse(dateNow);

        if (!task.deadine.before(systemDate)) {
            // add row to to do tab
            model_1.addRow(row);
        } else {
            // add row to done tab
            model_2.addRow(row);
        }

        // **********************

    }

    toDoTable = new JTable(model_1);
    doneTable = new JTable(model_2);
    toDoTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    doneTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    toDoTable.setFillsViewportHeight(true);
    doneTable.setFillsViewportHeight(true);

//here i add the JScrollPane  and it doesnt work 

    JScrollPane jpane = new JScrollPane(toDoTable);
    JScrollPane jpane1 = new JScrollPane(doneTable);

    panel.add(jpane);
    panel_1.add(jpane1);
    panel.add(jpane);
    panel_1.add(jpane1);

}
}    
  • 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-17T12:15:25+00:00Added an answer on June 17, 2026 at 12:15 pm

    Add your panel with proper layout for ex BorderLayout

      panel.add(jpane,BorderLayout.NORTH);
      panel_1.add(jpane1,BorderLayout.SOUTH);
    

    or you can use javax.swing.Box

     Box box = Box.createVerticalBox();
     box.add(jpane);
     box.add(jpane1);
     frame.getContentPane().add(box);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Jtable and I want to highlight a row by adding a
I am trying to add a JScrollPane to my JTable , but it doesn't
Adding Exceptional Handling is a good practise, but I have a doubt, In our
Adding some gui modifications and I want to have a button which is 10pixels
So I have a bunch of JTable s. Each JTable is inside a JScrollPane
Possible Duplicate: Adding multiple JProgressBar to TableColumn of JTable i have a jTable with
Adding the colums works, but i am stuck when i want to add the
I can't view header in JTable while adding it into a JFrame.. String[] col={Name,ID,Marks};
Adding the row one by one in the button click.. (i tried but its
Adding strings localization files in iPhone bundle is very simple and perfectly fine but

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.