我正在尝试在我的表中选择一些项目,但我不希望它们被泄露。问题是调用该方法(见下文)会自动导致在showSelected()
内部被调用Table.class
,这不是我想要的。
tableViewer.getTable().setSelection(lastSelectedIndices);
我尝试使用 tableViewer 设置选择,但由于某种原因它不起作用例如:tableViewer.setSelection(new StructuredSelection (lastSelectedIndices), false);
这行代码不会导致任何内容被选择。
无论如何我可以去选择表格行而不是让它们被显示出来吗?setSelection
在我的系统中,每次网格刷新后我都需要调用,这样用户就不会丢失他选择的项目。当用户向下滚动网格时会出现问题 --> 如果此时发生刷新,则网格会跳回到所选项目所在的位置。当用户向下滚动表格并且滚动条突然跳到顶部时,这看起来真的很奇怪。
任何帮助是极大的赞赏!
--建表代码--
// add table viewer
tableViewer = new TableViewer(this, SWT.MULTI | SWT.FULL_SELECTION | SWT.VIRTUAL);
tableViewer.setUseHashlookup(true);
tableViewer.addFilter(new GridPanelViewerFilter());
tableViewer.setComparator(new GridPanelViewerComparator());
tableViewer.setComparer(new GridPanelElementComparer());
table = tableViewer.getTable();
GridData tableGd = new GridData(SWT.FILL, SWT.FILL, true, true);
table.setLayoutData(tableGd);
table.setHeaderVisible(true);
table.setLinesVisible(true);
// set table font
setTableFont();
// listen to paint events for anti aliasing
table.addPaintListener( ...etcetc
---刷新表格的代码--
protected void refreshGrid() {
if(!updateGrid) return;
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
try {
// check if disposed
if (isDisposed()) {
log.log(new Status(IStatus.ERROR, Activator.PLUGIN_ID, getClass().getName() + ": " + "Grid already disposed"));
return;
}
// refresh table
table.setRedraw(false);
try {
// get last selected indices from mouse down event
tableViewer.refresh(true, false);
if(lastSelectedIndices != null){
tableViewer.getTable().deselectAll();
tableViewer.getTable().select(lastSelectedIndices);
}
} catch (Exception e) {
log.log(new Status(IStatus.ERROR, Activator.PLUGIN_ID,
getClass().getName() + ": " + "Error at refresh table", e));
}
table.setRedraw(true);
// process post grid refresh
postGridRefresh();
} catch (Exception e) {
log.log(new Status(IStatus.ERROR, Activator.PLUGIN_ID, getClass().getName() + ": " + "Error during refresh grid", e));
}
}
});
}