码迷,mamicode.com
首页 > Windows程序 > 详细

Swing Jtable 添加checkbox列

时间:2016-06-22 10:30:21      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:

1.在TableModel中设置列类型

@Override
public Class getColumnClass(int columnIndex) {
    return getValueAt(0, columnIndex).getClass();
}

 

 

2.重写jtable 的isCellEditable方法,否则复选框无法选中

@Override
   public boolean isCellEditable(int arg0, int arg1) {
        return getValueAt(arg0, arg1).getClass() == Boolean.class;
   }

 

Swing Jtable 添加checkbox列

标签:

原文地址:http://www.cnblogs.com/swbzmx/p/5605890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!