java 中的 requestFocus() ?
在 JTable 中,如果要向第一列中的 4 行插入值,则默认情况下焦点将转到第一行和第二列。我想聚焦同一行的下一列(即第 4 行)。如何在 JTable 中按行设置 requestFocus()?
In JTable, if you are inserting values to that row of 4 in first column, Then the focus goes to first row and second column by default. I want to focus the next column of the same row( ie., row 4). How to set requestFocus() in JTable by row wise.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们应该使用以下方法在 JTable.ie 中设置 requestFocus,
table.isCellSelected(rowPosition, colPosition);
然后光标位置自动移动到指定位置。
We should used the following method for setting a requestFocus in JTable.ie.,
table.isCellSelected(rowPosition, colPosition);
Then the cursor position goes to automatically in specified location.