com.vaadin.v7.ui.Table.getSortableContainerPropertyIds()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(323)

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

Table.getSortableContainerPropertyIds介绍

[英]Gets the container property IDs, which can be used to sort the item.

Note that the #isSortEnabled() state affects what this method returns. Disabling sorting causes this method to always return an empty collection.
[中]获取容器属性ID,该ID可用于对项进行排序。
请注意,#isSortEnabled()状态会影响此方法返回的内容。禁用排序会导致此方法始终返回空集合。

代码示例

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

  1. @Override
  2. public Collection<?> getSortableContainerPropertyIds() {
  3. Collection<?> ids = new ArrayList<>(super.getSortableContainerPropertyIds());
  4. if (nonSortableProperties != null) {
  5. ids.removeAll(nonSortableProperties);
  6. }
  7. return ids;
  8. }

代码示例来源:origin: viritin/viritin

  1. @Override
  2. public Collection<?> getSortableContainerPropertyIds() {
  3. if (getSortableProperties() != null) {
  4. return Collections.unmodifiableCollection(sortableProperties);
  5. }
  6. return super.getSortableContainerPropertyIds();
  7. }

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

  1. target.endTag("column");
  2. final Collection<?> sortables = getSortableContainerPropertyIds();
  3. for (Object colId : visibleColumns) {
  4. if (colId != null) {

相关文章

Table类方法