반응형
=================================
=================================
=================================
출처: http://www.coderanch.com/t/335845/GUI/java/increase-JTable-cell-size
- table.setRowHeight( int row, int height );
- table.getColumnModel().getColumn( int column ).setWidth( int width );
To make your table uneditable, you'll need to extend DefaultTableModel and override the isCellEditable() method to always return false.
- public boolean isCellEditable( int row, int col ) {
- return false;
- }
=================================
=================================
=================================
반응형
'JAVA > JAVA UI' 카테고리의 다른 글
JAVA swing - JFileChooser 관련 (0) | 2012.05.18 |
---|---|
JAVA 커서 컨트롤 (커서 모양 바꾸기) (0) | 2011.10.07 |
JPopupMenu 팝업메뉴 구성 관련 (0) | 2011.09.16 |
JTabbedPane Component (0) | 2011.09.09 |
JAVA - JTable 개인적으로 커스텀하기에 좋은 매소드 모음 (0) | 2011.09.07 |