Resizable JTable Column : JTable Column « Swing « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web Services SOA
27. EJB3
28. Spring
29. PDF
30. Email
31. J2ME
32. J2EE Application
33. XML
34. Design Pattern
35. Log
36. Security
37. Apache Common
38. Ant
39. JUnit
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » Swing » JTable Column 
14. 62. 1. Resizable JTable Column
ModesDescription
AUTO_RESIZE_ALL_COLUMNSAdjusts all column widths proportionally.
AUTO_RESIZE_LAST_COLUMNAdjusts the rightmost column width only to give or take space as required by the column currently being altered.
AUTO_RESIZE_NEXT_COLUMNIf you're reducing the width of a neighboring column, the neighboring column will grow to fill the unused space. If you're increasing the width of a column, the neighboring column will shrink.
AUTO_RESIZE_OFFTurns off the user's ability to resize columns. The columns can still be resized programmatically.
AUTO_RESIZE_SUBSEQUENT_COLUMNSAdjusts the width by proportionally altering (default) columns displayed to the right of the column being changed.


Resizable JTable Column
import java.awt.BorderLayout;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;

import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;

public class ResizeTable {
  public static void main(String args[]) {

    final Object rowData[][] 
        "1""one",  "I" },
        "2""two",  "II" },
        "3""three""III" }};
    final String columnNames[] "#""English""Roman" };

    final JTable table = new JTable(rowData, columnNames);
    JScrollPane scrollPane = new JScrollPane(table);

    String modes[] "Resize All Columns""Resize Last Column""Resize Next Column",
        "Resize Off""Resize Subsequent Columns" };
    
    final int modeKey[] JTable.AUTO_RESIZE_ALL_COLUMNS, JTable.AUTO_RESIZE_LAST_COLUMN,
        JTable.AUTO_RESIZE_NEXT_COLUMN, JTable.AUTO_RESIZE_OFF,
        JTable.AUTO_RESIZE_SUBSEQUENT_COLUMNS };
    
    JComboBox resizeModeComboBox = new JComboBox(modes);

    ItemListener itemListener = new ItemListener() {
      public void itemStateChanged(ItemEvent e) {
        JComboBox source = (JComboBoxe.getSource();
        int index = source.getSelectedIndex();
        table.setAutoResizeMode(modeKey[index]);
      }
    };
    resizeModeComboBox.addItemListener(itemListener);

    JFrame frame = new JFrame("Resizing Table");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    frame.add(resizeModeComboBox, BorderLayout.NORTH);
    frame.add(scrollPane, BorderLayout.CENTER);

    frame.setSize(300150);
    frame.setVisible(true);

  }
}
14. 62. JTable Column
14. 62. 1. Resizable JTable ColumnResizable JTable Column
14. 62. 2. Specifying Fixed JTable ColumnsSpecifying Fixed JTable Columns
14. 62. 3. Change Column WidthsChange Column Widths
14. 62. 4. Setting the Width of a Column in a JTable Component
14. 62. 5. Shading Rows and Columns in a JTable Component
14. 62. 6. Shades every other column yellow
14. 62. 7. Converts a visible column index to a column index in the model.
14. 62. 8. Insert a new column to a table
14. 62. 9. Converts a column index in the model to a visible column index
14. 62. 10. Returns the visible columns in the order that they appear in the model
14. 62. 11. Get the columns from TableColumnModel in the order that they appear in the view
14. 62. 12. Get column count
14. 62. 13. Returns the TableColumn associated with the specified column index in the model
14. 62. 14. Setting the Column Resize Mode of a JTable Component: Disable auto resizing
14. 62. 15. Locking the Width of a Column in a JTable Component
14. 62. 16. Appending a Column to a JTable Component using DefaultTableModel
14. 62. 17. Add a column with values.
14. 62. 18. Disable autoCreateColumnsFromModel
14. 62. 19. Add a column without affecting existing columns
14. 62. 20. Remove the first visible column without removing the underlying data
14. 62. 21. Move the last visible column so it becomes the first visible column
14. 62. 22. the last column is moved to the first position
14. 62. 23. Packing a Column of a JTable Component according to the header text
14. 62. 24. Packing a Column of a JTable Component according to the row data
14. 62. 25. Set column width based on cell renderer
14. 62. 26. Set table column auto-resize off
14. 62. 27. Changing the Name of a Column in a JTable Component
14. 62. 28. Disable auto resizing, Set the first visible column to 100 pixels wide
14. 62. 29. Change a cell in the 2nd visible column
14. 62. 30. Change a cell in the 3rd column in the model
14. 62. 31. Displaying an Icon in a Column Head of a JTable Component
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.