Переглянути джерело

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

Завантаження…
Відмінити
Зберегти