com.vaadin.ui.Grid.removeFooterRow()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(135)

本文整理了Java中com.vaadin.ui.Grid.removeFooterRow()方法的一些代码示例,展示了Grid.removeFooterRow()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grid.removeFooterRow()方法的具体详情如下:
包路径:com.vaadin.ui.Grid
类名称:Grid
方法名:removeFooterRow

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);
}

相关文章

Grid类方法