如何在gwt中加载简单分页器时显示第二页作为起始页面

时间:2012-07-20 06:18:23

标签: java gwt

我从datagrid的第二页选择了第5条记录。在所选行中进行了一些修改后,我保存了它并重新加载了datagrid。我希望在重新加载后选择之前选择的行。

任何帮助都可以得到赞赏。

1 个答案:

答案 0 :(得分:0)

假设您仍在DTO中编辑了DataGrid的实例,可以执行以下操作:

// get the start index in the list
int selectedIndex = dataProvider.getList().indexOf(myObj); 
// set the visible range
dataGrid.setVisibleRange(selectedIndex,dataGrid.getVisibleItemCount());
// select the row
selectionModel().setSelected(myObj, true);  // select the row