GWT网格表标签顺序

时间:2016-02-25 14:23:14

标签: java gwt tabs

我有一个使用网格创建的GWT表。目前,如果我使用tab迭代单元格,它会按行方式进行。有没有办法让GWT中的表按列顺序迭代。

以下是我的GWT表中当前和预期TAB顺序的图像。

当前行为:

enter image description here

通缉行为:

enter image description here

感谢您的帮助!

1 个答案:

答案 0 :(得分:2)

一个不太优雅的解决方案是在每个单元格的内容上使用方法setTabIndex。

public void trigram() throws FileNotFoundException{
PrintWriter tg = new PrintWriter(new File(trigramFile));
// CREATES THE TRIGRAM
for (int i = 0; i < bagOfWords.size() - 2; i++) {
    for (int j = i + 1; j < bagOfWords.size() - 1; j++) {
        for(int k = j + 1; k < bagOfWords.size(); k++){
            int distance = (k - i);
            trigramList.add(bagOfWords.get(i) + " " + bagOfWords.get(j) + " " + bagOfWords.get(k) + ", " + distance);
        }
    }
}