eclipse-rcp :jface tableviewer 单元格遍历
有一个显示行号的列,我想阻止用户使用箭头键遍历到其中的单元格。
在上图中,带有文本“testDO3”的单元格当前处于焦点并突出显示,行号列用于选择整行,所以我想让它不可遍历。
这是我自己的解决方案:
tv.getTable().addTraverseListener(new TraverseListener(){
public void keyTraversed(TraverseEvent e) {
ViewerCell cell = focusCellManager.getFocusCell();
if(e.keyCode == SWT.ARROW_LEFT && cell.getColumnIndex() == 2){
e.detail = SWT.TRAVERSE_NONE;
e.doit = true;
}
}
});
There is a column which displaying row numbers, I want to stop user to traverse to cells in it using arrow keys.
In above picture, the cell with text "testDO3" is currently focused and highlighted, the row number column is used to select the whole row, so I want to make it not travsersable.
here is my own solution:
tv.getTable().addTraverseListener(new TraverseListener(){
public void keyTraversed(TraverseEvent e) {
ViewerCell cell = focusCellManager.getFocusCell();
if(e.keyCode == SWT.ARROW_LEFT && cell.getColumnIndex() == 2){
e.detail = SWT.TRAVERSE_NONE;
e.doit = true;
}
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用 JFace 单元格导航,则对
CellNavigationStrategy
进行子类化并在TableViewerFocusCellManager
的构造函数中使用。Assuming you're using JFace cell navigation, then sub-class
CellNavigationStrategy
and use in constructor ofTableViewerFocusCellManager
.