JTable行过滤器
是否有可能如何获取与非过滤表相对应的选择的索引?
使用正则表达式过滤器过滤表后。 JTable getSelectedRow 返回过滤表的索引?
Is is possible to some how get the index of the selection corresponding to the non filtered table?
After the table is filter using a regexFilter. JTable getSelectedRow returns the index of the filtered table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 1.6 版本中内置的 TableRowSorter 功能,您可以在表上使用 conversionRowIndexToModel()。这将为您提供所选行的未过滤索引。
JTable 的 javadoc 对此进行了描述:
If you are using the built in TableRowSorter functionality from 1.6 you can use the convertRowIndexToModel() on the table. This is give you the unfiltered index of the selected row.
The javadoc for JTable gives a description of this:
将行 ID 存储在数据模型中,当您从 jtable 获取所选行时,查询该行 ID。
store the row id in your datamodel, when you get the selected row from jtable, query that rows ID.