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

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

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

Grid.setStyleGenerator介绍

[英]Sets the style generator that is used for generating class names for rows in this grid. Returning null from the generator results in no custom style name being set. Note: The style generator is applied only to the body cells, not to the Editor.
[中]设置用于为此网格中的行生成类名的样式生成器。从生成器返回null将导致未设置自定义样式名称。注意:样式生成器仅应用于主体单元格,而不应用于编辑器。

代码示例

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

protected void initComponent(Grid<E> component) {
  setSelectionMode(SelectionMode.SINGLE);
  component.setColumnReorderingAllowed(true);
  component.addItemClickListener(this::onItemClick);
  component.addColumnReorderListener(this::onColumnReorder);
  component.addSortListener(this::onSort);
  component.setSizeUndefined();
  component.setHeightMode(HeightMode.UNDEFINED);
  component.setStyleGenerator(this::getGeneratedRowStyle);
  //noinspection unchecked
  ((CubaEnhancedGrid<E>) component).setCubaEditorFieldFactory(createEditorFieldFactory());
}

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

grid.setStyleGenerator(i -> generateRowStyle(i));

相关文章

Grid类方法