我们如何将一个 JTable 添加到另一个 JTable 中?
假设我有一个包含 10 行的 JTable,如果我双击一行,该行应该消失,并且应该在整行中插入一个新的 JTable。我尝试插入所需的行数,并且我正在通过调用删除选择的行
((DefaultTableModel)table.getModel()).getDataVector().removeElementAt(row+insertedNumberOfRows)
是否有其他方法可以将 JTable 添加为整行中的组件?
Suppose I have a JTable with 10 rows and if I double click on a row, that row should be vanished and a new JTable should be inserted in that entire row. I tried to insert the number of rows required, and I am removing the row selected by calling
((DefaultTableModel)table.getModel()).getDataVector().removeElementAt(row+insertedNumberOfRows)
Is there any other way to do add a JTable as a component in that entire row?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法将
JTable
添加到另一个JTable
中。如果您想在单击父(主)表的一行时显示新的子表(详细信息),请监听单元格中的双击,然后从容器面板中删除JTable
,使用新行创建新的行以显示并添加到容器面板。当您实时删除和添加组件时,请小心使用pack()
和validate()
。You can't add a
JTable
inside anotherJTable
. If you want to show a new child table (detail) when clicking on a row of the parent (master) table, listen the double-click in the cell, then remove theJTable
from the containter panel, create the new one with the new rows to show and add to the container panel. Be careful withpack()
andvalidate()
as you remove and add components lively.