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

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

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

Grid.addHeaderRowAt介绍

[英]Inserts a new row at the given position to the header section. Shifts the row currently at that position and any subsequent rows down (adds one to their indices). Inserting at #getHeaderRowCount() appends the row at the bottom of the header.
[中]在标题部分的给定位置插入新行。将当前位于该位置的行和任何后续行下移(将一行添加到其索引中)。在#getHeaderRowCount()处插入将在标题底部追加行。

代码示例

代码示例来源:origin: com.vaadin/vaadin-server

/**
 * Adds a new row at the top of the header section.
 *
 * @return the prepended header row
 *
 * @see #appendHeaderRow()
 * @see #addHeaderRowAt(int)
 * @see #removeHeaderRow(HeaderRow)
 * @see #removeHeaderRow(int)
 */
public HeaderRow prependHeaderRow() {
  return addHeaderRowAt(0);
}

代码示例来源:origin: com.vaadin/vaadin-server

/**
 * Adds a new row at the bottom of the header section.
 *
 * @return the appended header row
 *
 * @see #prependHeaderRow()
 * @see #addHeaderRowAt(int)
 * @see #removeHeaderRow(HeaderRow)
 * @see #removeHeaderRow(int)
 */
public HeaderRow appendHeaderRow() {
  return addHeaderRowAt(getHeaderRowCount());
}

代码示例来源:origin: com.haulmont.cuba/cuba-web

@Override
public HeaderRow addHeaderRowAt(int index) {
  com.vaadin.ui.components.grid.HeaderRow headerRow = component.addHeaderRowAt(index);
  return addHeaderRowInternal(headerRow);
}

相关文章

Grid类方法