标签: vaadin
我有一个带有一些过滤器和排序的Vaadin表。是否可以在当前所选行的上方和下方获取行的ID?
答案 0 :(得分:0)
Object currentRow = table.getValue(); //current selected row Object nextRow = table.nextItemId(currentRow); Object previousRow = table.prevItemId(currentRow);