Uses of Class
org.vaadin.firitin.components.grid.VGrid.VColumn
Packages that use VGrid.VColumn
-
Uses of VGrid.VColumn in org.vaadin.firitin.components.grid
Methods in org.vaadin.firitin.components.grid that return VGrid.VColumnModifier and TypeMethodDescriptionVGrid.addPropertyColumn(PropertyRef<T, ?> property) Adds a column for the given property, using a method reference to its getter instead of a property name string:VGrid.getColumnByKey(PropertyRef<T, ?> property) Finds the column of the given property, using a method reference to its getter instead of a property name string.<C extends com.vaadin.flow.component.Component>
VGrid.VColumn<T> VGrid.VColumn.setComponentRenderer(com.vaadin.flow.function.ValueProvider<T, C> componentProvider) Replaces the way this column is rendered with a component, leaving the rest of the column configuration untouched.VGrid.VColumn.withKey(PropertyRef<T, ?> property) Sets the key of this column, using a method reference to the getter of the property instead of a string.VGrid.VColumn.withRenderer(com.vaadin.flow.data.renderer.Renderer<T> renderer) Replaces the renderer of this column, leaving the rest of the column configuration untouched.final VGrid.VColumn<T> VGrid.VColumn.withSortProperties(PropertyRef<T, ?>... properties) Sets the properties this column is sorted by in the backend, using method references to their getters instead of property name strings.Methods in org.vaadin.firitin.components.grid with parameters of type VGrid.VColumnModifier and TypeMethodDescriptionVGrid.CellFormatter.formatColumnValue(VGrid.VColumn<T> col, Object value) Formats the value in a raw data column.