本文整理了Java中com.vaadin.ui.Grid.setDefaultHeaderRow()
方法的一些代码示例,展示了Grid.setDefaultHeaderRow()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grid.setDefaultHeaderRow()
方法的具体详情如下:
包路径:com.vaadin.ui.Grid
类名称:Grid
方法名:setDefaultHeaderRow
[英]Sets the default row of the header. The default row is a special header row that displays column captions and sort indicators. By default Grid has a single row which is also the default row. When a header row is set as the default row, any existing cell content is replaced by the column captions.
[中]设置标题的默认行。默认行是显示列标题和排序指示器的特殊标题行。默认情况下,网格有一行,这也是默认行。将标题行设置为默认行时,任何现有单元格内容都将替换为列标题。
代码示例来源:origin: com.vaadin/vaadin-server
super(dataCommunicator);
registerRpc(new GridServerRpcImpl());
setDefaultHeaderRow(appendHeaderRow());
setSelectionModel(new SingleSelectionModelImpl<>());
代码示例来源:origin: com.holon-platform.vaadin7/holon-vaadin
@Override
public void setDefaultRow(HeaderRow row) {
grid.setDefaultHeaderRow(row);
}
代码示例来源:origin: com.haulmont.cuba/cuba-web
@Override
public void setDefaultHeaderRow(HeaderRow headerRow) {
component.setDefaultHeaderRow(((HeaderRowImpl) headerRow).getGridRow());
}
代码示例来源:origin: com.holon-platform.vaadin/holon-vaadin
@Override
public void setDefaultRow(int rowIndex) {
grid.setDefaultHeaderRow(grid.getHeaderRow(rowIndex));
}
内容来源于网络,如有侵权,请联系作者删除!