迭代Vaadin Table Rows

时间:2014-08-25 10:09:17

标签: vaadin

我有一个带有一些过滤器和排序的Vaadin表。是否可以在当前所选行的上方和下方获取行的ID?

1 个答案:

答案 0 :(得分:0)

Object currentRow = table.getValue(); //current selected row

Object nextRow = table.nextItemId(currentRow);
Object previousRow = table.prevItemId(currentRow);