本文整理了Java中com.vaadin.ui.Grid.getDefaultHeaderRow()
方法的一些代码示例,展示了Grid.getDefaultHeaderRow()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grid.getDefaultHeaderRow()
方法的具体详情如下:
包路径:com.vaadin.ui.Grid
类名称:Grid
方法名:getDefaultHeaderRow
[英]Returns the current default row of the header.
[中]返回标题的当前默认行。
代码示例来源:origin: com.vaadin/vaadin-server
private void addColumn(String identifier, Column<T, ?> column) {
if (getColumns().contains(column)) {
return;
}
column.extend(this);
columnSet.add(column);
columnKeys.put(identifier, column);
column.setInternalId(identifier);
addDataGenerator(column.getDataGenerator());
getState().columnOrder.add(identifier);
getHeader().addColumn(identifier);
getFooter().addColumn(identifier);
if (getDefaultHeaderRow() != null) {
getDefaultHeaderRow().getCell(column).setText(column.getCaption());
}
column.updateSortable();
}
代码示例来源:origin: com.vaadin/vaadin-server
/**
* Sets the header caption for this column.
*
* @param caption
* the header caption, not null
*
* @return this column
*/
public Column<T, V> setCaption(String caption) {
Objects.requireNonNull(caption, "Header caption can't be null");
if (caption.equals(getState(false).caption)) {
return this;
}
getState().caption = caption;
HeaderRow row = getGrid().getDefaultHeaderRow();
if (row != null) {
row.getCell(this).setText(caption);
}
return this;
}
代码示例来源:origin: com.vaadin/vaadin-server
if (getDefaultHeaderRow() != null) {
for (Column<T, ?> c : getColumns()) {
HeaderCell headerCell = getDefaultHeaderRow().getCell(c);
if (headerCell.getCellType() == GridStaticCellType.TEXT) {
c.setCaption(headerCell.getText());
代码示例来源:origin: com.holon-platform.vaadin7/holon-vaadin
@Override
public HeaderRow getDefaultRow() {
return grid.getDefaultHeaderRow();
}
代码示例来源:origin: com.holon-platform.vaadin/holon-vaadin
@Override
public ListingHeaderRow<P> getDefaultRow() {
return new HeaderRowWrapper<>(grid.getDefaultHeaderRow(), converter);
}
代码示例来源:origin: com.haulmont.cuba/cuba-web
@Override
public HeaderRow getDefaultHeaderRow() {
return getHeaderRowByGridRow(component.getDefaultHeaderRow());
}
代码示例来源:origin: com.holon-platform.vaadin/holon-vaadin
HeaderRow row = getGrid().getDefaultHeaderRow();
if (row != null) {
row.getCell(column).setHtml(header);
内容来源于网络,如有侵权,请联系作者删除!