瀏覽代碼

Add API for accessing PropertySet of Grid (#10714)

tags/8.4.0.alpha1
Aki Väliaho 6 年之前
父節點
當前提交
f3e06f4f41
共有 1 個文件被更改,包括 11 次插入0 次删除
  1. 11
    0
      server/src/main/java/com/vaadin/ui/Grid.java

+ 11
- 0
server/src/main/java/com/vaadin/ui/Grid.java 查看文件

@@ -2517,6 +2517,17 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,

}

/**
* Returns the property set used by this grid.
*
* @return propertySet
* the property set to return
* @since
*/
protected PropertySet<T> getPropertySet() {
return propertySet;
}

/**
* Creates a grid using a custom {@link PropertySet} implementation for
* creating a default set of columns and for resolving property names with

Loading…
取消
儲存