本文整理了Java中com.vaadin.ui.Grid.removeFooterRow()
方法的一些代码示例,展示了Grid.removeFooterRow()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grid.removeFooterRow()
方法的具体详情如下:
包路径:com.vaadin.ui.Grid
类名称:Grid
方法名:removeFooterRow
[英]Removes the row at the given position from the footer section.
[中]从页脚部分删除给定位置的行。
代码示例来源:origin: com.holon-platform.vaadin/holon-vaadin
@Override
public void removeRow(int rowIndex) {
grid.removeFooterRow(rowIndex);
}
代码示例来源:origin: com.holon-platform.vaadin7/holon-vaadin
@Override
public void removeRow(FooterRow row) {
grid.removeFooterRow(row);
}
代码示例来源:origin: com.holon-platform.vaadin7/holon-vaadin
@Override
public void removeRow(int rowIndex) {
grid.removeFooterRow(rowIndex);
}
代码示例来源:origin: com.haulmont.cuba/cuba-web
@Override
public void removeFooterRow(FooterRow footerRow) {
if (footerRow == null || !footerRows.contains(footerRow)) {
return;
}
component.removeFooterRow(((FooterRowImpl) footerRow).getGridRow());
footerRows.remove(footerRow);
}
内容来源于网络,如有侵权,请联系作者删除!