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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:14:13+00:00 2026-05-26T10:14:13+00:00

I have empty TableModel. When I set this model to JTable it hasn’t rows.

  • 0

I have empty TableModel. When I set this model to JTable it hasn’t rows. I want to create one empty row, where user can select value in combo box editor. If user selects not-null value, then second row added and I have one object in model. How can I add empty row, when there is not object for this row in model?

  • 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-26T10:14:13+00:00Added an answer on May 26, 2026 at 10:14 am

    The TableModel is your friend: implement it’s setValueAt method to add a row after setting the value. Here’s an example for doing so by subclassing DefaultTableModel:

        DefaultTableModel model = new DefaultTableModel(1, 3) {
    
            /** 
             * @inherited <p>
             */
            @Override
            public void setValueAt(Object aValue, int row, int column) {
                super.setValueAt(aValue, row, column);
                if (shouldAddRow(row, column)) {
                    addRow(new Object[] {});
                }
            }
    
            private boolean shouldAddRow(int lastEditedRow, int lastEditedColumn) {
                // implement your logic here
                return lastEditedRow == getRowCount() -1;
            }
    
    
        };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a JTable whose associated TableModel could be initially empty. Therefore, it currently
I have an empty JTable, absolutely nothing in it. I need to dynamically generate
I have an empty TextView set for my ListView . When there is no
Let's say I have an empty XML file like so: <root></root> And I want
I bet somebody has solved this before, but my searches have come up empty.
I have a table and the columns on this table contains empty spaces for
I am having a Password textbox which will have empty value. when the user
I've got a set of database results where some of the columns have empty
So how do I add that it should not have empty field in this
I have this post earlier regarding removing the html tags that have empty text

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.