4

我正在尝试在我的表中选择一些项目,但我不希望它们被泄露。问题是调用该方法(见下文)会自动导致在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));
            }
        }
    });
}
4

2 回答 2

1

尝试使用Table.select(indexes)以防止泄露。

但是使用TableViewer.refresh()实际上应该保留选择。只是一个疯狂的猜测,但也许您TableViewer.setUseHashlookup(true)在 TableViewer 上设置任何输入之前尝试一下。

你使用虚拟表吗?如果是这样,请先尝试不使用 VIRTUAL 标志。

于 2011-01-14T11:28:23.050 回答
0

这只是一个提示,但也许它对你有用。尝试使用这样的setSelection()方法:

tableViewer.getTable().setSelection(lastSelectedIndices, false);

如果要使选择可见,则最后一个参数(布尔值)应设置为 true,否则为 false。

于 2018-04-04T07:27:34.950 回答