jTable中添加的复选框为什么不能编辑
2个回答
展开全部
//设置第0列显示JCheckBox
TableColumnModel tcm=table.getColumnModel();
tcm.getColumn(0).setCellEditor(new DefaultCellEditor(new JCheckBox()));
//添加表格监听事件
table.addMouseListener(new MouseAdapter(){
public void mouseClicked(MouseEvent e){
if(e.getClickCount()==1){
int columnIndex=table.columnAtPoint(e.getPoint());//获取点击的列
int rowIndex=table.rowAtPoint(e.getPoint());//获取点击的行
if(columnIndex==0){//第0列时,执行代码
if(table.getValueAt(rowIndex,columnIndex)==null){//如果未初始化,则设置为FALSE
table.setValueAt(false,rowIndex,columnIndex);
}
else{//原来未选中
table.setValueAt(true,rowIndex,0);
}
}
}
}
});
TableColumnModel tcm=table.getColumnModel();
tcm.getColumn(0).setCellEditor(new DefaultCellEditor(new JCheckBox()));
//添加表格监听事件
table.addMouseListener(new MouseAdapter(){
public void mouseClicked(MouseEvent e){
if(e.getClickCount()==1){
int columnIndex=table.columnAtPoint(e.getPoint());//获取点击的列
int rowIndex=table.rowAtPoint(e.getPoint());//获取点击的行
if(columnIndex==0){//第0列时,执行代码
if(table.getValueAt(rowIndex,columnIndex)==null){//如果未初始化,则设置为FALSE
table.setValueAt(false,rowIndex,columnIndex);
}
else{//原来未选中
table.setValueAt(true,rowIndex,0);
}
}
}
}
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-12-04
展开全部
首先,jtable上可以加滚动条吗?我用一般的方法加了不显示表格了我试了试你给的代码 不好使啊 可能是我看不太懂所以不会用 希望能得到详细的解释对于复选框中是钩了还是没钩怎么判定啊?本人菜鸟,希望得到高手支招,谢谢哈
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询