Uses of Class
com.flowingcode.vaadin.addons.easygrid.EasyColumn
Packages that use EasyColumn
-
Uses of EasyColumn in com.flowingcode.vaadin.addons.easygrid
Methods in com.flowingcode.vaadin.addons.easygrid that return EasyColumnModifier and TypeMethodDescription<V> EasyColumn<T,V> EasyGridWrapper.addColumn(Class<V> type, ValueProvider<T, V> getter) Adds a column for the given type and value provider.EasyColumn<T,?> Adds a column for the given bean property.<S> EasyColumn<T,S> Returns this column cast to value typeS, analogously toClass.asSubclass(java.lang.Class<U>).protected <V> EasyColumn<T,V> EasyGridWrapper.createEasyColumn(Class<V> type, ValueProvider<T, V> getter, String propertyName, PropertyDescriptor propertyDescriptor) EasyColumn<T,?> Returns theEasyColumnfor the given property name, ornullif no column with that key exists or the column was not created through the EasyGrid API.EasyColumn<T,V> EasyColumn.setFormatter(SerializableFunction<V, String> formatter) Sets a custom formatter that converts the column value to a display string.EasyColumn<T,V> EasyColumn.setNullRepresentation(String nullRepresentation) Sets the string to display when the column value isnull.EasyColumn<T,V> EasyColumn.setRendererFactory(RendererFactory<T, V> rendererFactory) Sets a custom renderer factory for this column.EasyColumn<T,V> EasyColumn.setTextAlign(ColumnTextAlign textAlign) Sets the text alignment for this column's cells.