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.

link|improve this question

72% accept rate
feedback

1 Answer

up vote 2 down vote accepted

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;
        }
    };
link|improve this answer
what do you mean by the following ? comp.setBackground( MyColors.getColor( Index_row ) ); comp.setForeground( MyColors.getColor( Index_row ) ); – fresh_dev Oct 29 '11 at 12:19
and i tried this code and it's not working with me. – fresh_dev Oct 29 '11 at 12:20
question updated. – fresh_dev Oct 29 '11 at 12:24
You would need to define class MyColors, and add a function getColor(int). Or, replace MyColor.getColor( ... ) with an array like Color colors[] = { Color.black, Color.blue, Color.cyan, Color.darkGray, Color.gray, Color.green, Color.lightGray, Color.magenta, Color.orange, Color.pink, Color.red, Color.yellow }; – John Oct 29 '11 at 12:30
Try looking at stackoverflow.com/q/3033961/974465 – John Oct 29 '11 at 12:30
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.