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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:17:13+00:00 2026-05-16T16:17:13+00:00

I need to display a cell data (20.2,true) in Jtable in which 20.2 is

  • 0

I need to display a cell data (20.2,true) in Jtable in which 20.2 is float and true is a boolean value in the format (20.2,[JCheckBox]).Is it possible to render 2 different objects in such a manner?

  • 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-16T16:17:13+00:00Added an answer on May 16, 2026 at 4:17 pm

    Yeah it is. But I think you will need a Compound-Renderer, which means you have to create your own CellRenderer implementing TableCellRenderer or extending the existing DefaultTableCellRenderer. At least as long as you just want to display these values in your table, this should work fine for you.

    Your Compound will consist of a Label for displaying your float and a checkbox for displaying your boolean.

    EDIT:
    Ok, here a small example:

    /**
     * Example for CompoundRenderer
     * 
     * @author ymene
     */
    public class CompoundRendererExample extends JPanel
    {
    
      public static void main( String[] args )
      {
        JFrame frame = new JFrame( "Example for rendering JTable - values with CompoundRenderer" );
        frame.setDefaultCloseOperation( WindowConstants.EXIT_ON_CLOSE );
        frame.add( new CompundRendererExample() );
        frame.pack();
        frame.setVisible( true );
      }
    
      public CompoundRendererExample()
      {
        JScrollPane scrollPane = new JScrollPane();
        JXTable table;
    
        table = new JXTable( new TableModel() );
        table.setFillsViewportHeight( true );
    
        for ( int i = 0; i < table.getModel().getColumnCount(); i++ )
          table.getColumn( i ).setPreferredWidth( 200 );
    
        scrollPane.setViewportView( table );
        add( scrollPane );
    
        //Declaring compound-renderer
        table.setDefaultRenderer( FloatBool.class, new FloatBoolRenderer() );
      }
    }
    
    
    class TableModel extends AbstractTableModel
    {
      private String[]   columnNames = { "Float-Boolean" };
      private Object[][] data        = { { new FloatBool( 2.2f, true ) }, { new FloatBool( 3.2f, false ) } };
    
      public int getColumnCount()
      {
        return columnNames.length;
      }
    
      public int getRowCount()
      {
        return data.length;
      }
    
      @Override
      public String getColumnName( int col )
      {
        return columnNames[ col ];
      }
    
      public Object getValueAt( int row, int col )
      {
        return data[ row ][ col ];
      }
    
      @Override
      public Class getColumnClass( int c )
      {
        if ( getValueAt( 0, c ) == null )
          return Object.class;
        return getValueAt( 0, c ).getClass();
      }
    
      @Override
      public boolean isCellEditable( int row, int col )
      {
        return true;
      }
    
      @Override
      public void setValueAt( Object value, int row, int col )
      {
        data[ row ][ col ] = value;
        fireTableCellUpdated( row, col );
      }
    }
    
    
    class FloatBoolRenderer extends DefaultTableCellRenderer
    {
      JLabel    floatPartLabel;
      JCheckBox booleanPartCheckBox;
      JPanel    container;
    
      public FloatBoolRenderer()
      {
        floatPartLabel = new JLabel();
        booleanPartCheckBox = new JCheckBox();
        container = new JPanel();
    
        container.setLayout( new BorderLayout() );
        container.add( floatPartLabel, BorderLayout.CENTER );
        container.add( booleanPartCheckBox, BorderLayout.EAST );
        container.setVisible( true );
      }
    
      @Override
      public Component getTableCellRendererComponent( JTable table, Object value, boolean isSelected,
                                                      boolean hasFocus, int row, int column )
      {
        if ( value != null )
        {
          super.getTableCellRendererComponent( table, value, isSelected, hasFocus, row, column );
    
          if ( value instanceof FloatBool )
          {
            FloatBool floatboolean = (FloatBool) value;
            booleanPartCheckBox.setSelected( floatboolean.getBooleanValue() );
            floatPartLabel.setText( "" + floatboolean.getFloatValue() );
          }
        }
    
        return container;
      }
    }
    
    
    class FloatBool
    {
      float   floatValue;
      boolean booleanValue;
    
      public FloatBool( float floatValue, boolean booleanValue )
      {
        this.floatValue = floatValue;
        this.booleanValue = booleanValue;
      }
    
      public boolean getBooleanValue()
      {
        return booleanValue;
      }
    
      public float getFloatValue()
      {
        return floatValue;
      }
    }
    

    Not perfect yet, but should give you ideas how to design your own renderer.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to display a string which has a white space on a asp.net
We have a situation where we need to display data from a database in
I am now working on an android app in which I need to display
I need to display an error message on rejecting a drop in my application.
I need to display many pages of news in a site. Should I do
I need to display a variable-length message and allow the text to be selectable.
I need to display additional information, like a tooltip, but it's a lot of
I need to display the log entries from a database. Of course the log
I need to display 2d images in opengl using textures. The image dimensions are
I need to display text in an iPhone application, something like the way a

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.