2016-05-19 91 views
0

我想在我的表的末尾添加彙總行。是否有我可以使用的com.vaadin.ui.Table的標準函數?在vaadin表中添加彙總行

+0

還值得注意的是,如果您是Vaadin的新手,您可能需要使用Grid而不是Table。但是,無論你適合什麼... – kukis

回答

1

Vaadin表已知的頁眉和頁腳。 Here is the Documentation for it

// Set the footers 
table.setFooterVisible(true); 
table.setColumnFooter("Name", "Average"); 
table.setColumnFooter("Died At Age", String.valueOf(avgAge)); 

生成頁腳的內容是你的責任,所以你必須做總和/平均或其他計算。