是否可以在 jtable 中调用自动行排序器
无论如何,是否可以在使用创建的 jtable 中调用自动行排序器,
setAutoCreateRowSorter(true);
我试图让它按默认列排序,而无需用户单击列标题。
is there anyway to invoke the auto row sorter in a jtable that is created by using
setAutoCreateRowSorter(true);
i'm trying to get it to sort by a default column without the user having to click on on the column header.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为你必须使用 setSortsOnUpdates (true) 来自 TableRowSorter 类。
I think you have to use setSortsOnUpdates(true) method from TableRowSorter class.