我们如何将一个 JTable 添加到另一个 JTable 中?

发布于 2024-10-21 04:09:02 字数 251 浏览 6 评论 0原文

假设我有一个包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界和平 2024-10-28 04:09:02

您无法将 JTable 添加到另一个 JTable 中。如果您想在单击父(主)表的一行时显示新的子表(详细信息),请监听单元格中的双击,然后从容器面板中删除 JTable,使用新行创建新的行以显示并添加到容器面板。当您实时删除和添加组件时,请小心使用 pack()validate()

You can't add a JTable inside another JTable. 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 the JTable from the containter panel, create the new one with the new rows to show and add to the container panel. Be careful with pack() and validate() as you remove and add components lively.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文