在SWT中加载时选择表格中的第一行

时间:2018-01-30 03:07:22

标签: eclipse-plugin swt eclipse-rcp

如何在启动时加载带有数据的SWT表后选择表中的第一行。

1)目前在表中加载一些静态数据。想在加载过程中默认选择第一行。

2)当默认行中的表行选择发生变化时,如何刷新页面。

1 个答案:

答案 0 :(得分:1)

对于Jface TableViewer,请使用Tableviewer.setSelection()方法。

对于SWT Table

table.setSelection(index);
table.notifyListeners(SWT.Selection, new Event()); // to notify the page to update