取消选中复选框时取消选择标题复选框
我有一个 jtable,标题中有一个复选框,列的单元格中有其他复选框。
就像你在图片上看到的,有一个问题
用于 DefaultTableModel 的第一列
现在
布尔值 ,我的第一列有一个 tableRenderer如果取消选择复选框,我应该使用选项来取消选择标题吗?
谢谢
i have a jtable with a checkbox in the header and other checkbox in the cell of the column.
like you can see on the picture, there are a problem
boolean is used for the first colum for the DefaultTableModel
right now, i have a tableRenderer for my first column
what option should i use to make header to get deselected if a check box is deselected?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为顶部复选框提供一个操作事件,并在选中或取消选中时运行 for 循环来选中/取消选中表中的所有复选框。
Have an actionevent for the top checkbox, and on checked or unchecked, run a for loop to check/uncheck all the checkboxes in the table.
那会很容易。向表模型注册侦听器:
查看事件,如果更改的值来自第一列并且设置为 false,则取消选择该复选框。
That would be very easy. Register a listener to the table model:
Look at the event, if the value changed was from the first column and it was set to false then deselect the checkbox.