Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Help with TableCellRendering

  1. #1
    Member
    Join Date
    Aug 2009
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Help with TableCellRendering

    Hi all,
    I have created a JTable.In that table column 2 have to show in color RED.It showing properly most of the times.Sometimes the first row of column 2 didn't showing properly.All other rows column2 showing.At that time it didn't go inside the method 'getTableCellRendererComponent()' for the first row.I don't know where is the problem?

    here the code is,

    public class YourTableCellRenderer extends DefaultTableCellRenderer {

    public Component getTableCellRendererComponent(JTable table,Object value, boolean isSelected,
    boolean hasFocus, int row, int column) {

    java.awt.Component c = super.getTableCellRendererComponent(table, value, isSelected,
    hasFocus, row, column);

    String strValue=(String)value;
    if(strValue.equalsIgnoreCase("ON"))
    c.setForeground(GREEN);
    else if(strValue.equalsIgnoreCase("OFF"))
    c.setForeground(Color.red);
    else if(strValue.equalsIgnoreCase("UNKNOWN"))
    c.setForeground(Color.blue);
    }
    }

  2. #2
    Member Darryl.Burke's Avatar
    Join Date
    Mar 2010
    Location
    Madgaon, Goa, India
    Posts
    494
    Thanks
    8
    Thanked 48 Times in 46 Posts

    Default Re: Help with TableCellRendering

    To get better help sooner, post a SSCCE* that clearly demonstrates your problem.
    * SSCCE : Java Glossary

    For such a simple requirement, it might be easier to override JTable#prepareRenderer instead of making a full fledged custom renderer.

    db