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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:05:07+00:00 2026-05-26T14:05:07+00:00

i have a jtable and i want when selecting a cell to change the

  • 0

i have a jtable and i want when selecting a cell to change the background for the whole row and the whole column of this cell (not to change the background of the cell only !), how to do so ?

please advise, thanks.

  • 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-26T14:05:08+00:00Added an answer on May 26, 2026 at 2:05 pm

    I’ve used the following to control color of a column. To see how to incorporate the current cell, look at
    http://www.javaworld.com/javaworld/javaqa/2001-09/03-qa-0928-jtable.html

        this.table = new JTable()
        {
            private static final long serialVersionUID = -5739534894469353266L;
    
    
            /**
             * Set the background color of the row equal to the color of the path in the map
             */
            @Override
            public Component prepareRenderer( final TableCellRenderer renderer, final int Index_row, final int Index_col )
            {
                final Component comp = super.prepareRenderer( renderer, Index_row, Index_col );
                // even index, selected or not selected
    
                if ( Index_col == 1 )
                {
                    // Color column, match foreground / background colors
                    comp.setBackground( MyColors.getColor( Index_row ) );
                    comp.setForeground( MyColors.getColor( Index_row ) );
                }
                else
                {
                    comp.setBackground( Color.white );
                    comp.setForeground( Color.black );
                }
                return comp;
            }
        };
    
    • 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 a cell (or its row) painted in
I have a JTable . I want to know which row and column are
Suppose you have a JTable and for each cell you want to display three
I have a JTable of data. I want it so that when a row
I have a Jtable and I want to highlight a row by adding a
I have a Jtable with a checkbox in first column. I want to strikethrough
I have a JTable that will have the last column data field change to
I have a JTable with a number of columns. I want a particular column
I have a JTable that I want to use to display some data (a
I have a JTable with two columns and both are JComboBox, for this purpose

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.