Uses of Class
com.vaadin.flow.data.renderer.Renderer
Packages that use Renderer
Package
Description
-
Uses of Renderer in com.vaadin.flow.component.combobox
Methods in com.vaadin.flow.component.combobox with parameters of type RendererModifier and TypeMethodDescriptionvoidComboBoxBase.setRenderer(Renderer<TItem> renderer) Sets the Renderer responsible to render the individual items in the list of possible choices of the ComboBox. -
Uses of Renderer in com.vaadin.flow.component.grid
Subclasses of Renderer in com.vaadin.flow.component.gridModifier and TypeClassDescriptionclassColumnPathRenderer<SOURCE>Renderer for columns that doesn't use a renderer function for rendering its contents (only the value from the object model).Methods in com.vaadin.flow.component.grid that return RendererModifier and TypeMethodDescriptionGrid.Column.getRenderer()Get the renderer used for this column.Methods in com.vaadin.flow.component.grid that return types with arguments of type RendererModifier and TypeMethodDescriptionprotected BiFunction<Renderer<T>,String, Grid.Column<T>> Grid.getDefaultColumnFactory()Gives a reference to the column factory.Methods in com.vaadin.flow.component.grid with parameters of type RendererModifier and TypeMethodDescriptionAdds a new text column to thisGridwith a renderer and default column factory.protected <C extends Grid.Column<T>>
CAdds a new text column to thisGridwith a renderer and column factory provided.protected Grid.Column<T>Grid.createColumn(Renderer<T> renderer, String columnId) Deprecated.This method should not be used outside.voidGrid.setItemDetailsRenderer(Renderer<T> renderer) Set the renderer to use for displaying the item details rows in this grid.Grid.Column.setRenderer(Renderer<T> renderer) Set the renderer for this column.Method parameters in com.vaadin.flow.component.grid with type arguments of type RendererModifier and TypeMethodDescriptionprotected <C extends Grid.Column<T>>
CAdds a new text column to thisGridwith a renderer and column factory provided.protected <C extends Grid.Column<T>>
CGrid.addColumn(ValueProvider<T, ?> valueProvider, BiFunction<Renderer<T>, String, C> columnFactory) Adds a new text column to thisGridwith a value provider and column factory provided.protected <C extends Grid.Column<T>>
CAdds a new column for the given property name with the column factory provided.Constructors in com.vaadin.flow.component.grid with parameters of type Renderer -
Uses of Renderer in com.vaadin.flow.component.grid.editor
Subclasses of Renderer in com.vaadin.flow.component.grid.editorModifier and TypeClassDescriptionclassRenderer and DataGenerator used byGrid.Columnto control the state of the editor components. -
Uses of Renderer in com.vaadin.flow.component.gridpro
Methods in com.vaadin.flow.component.gridpro with parameters of type RendererModifier and TypeMethodDescriptionGridPro.addEditColumn(ValueProvider<E, ?> valueProvider, Renderer<E> renderer) Adds a new edit column to thisGridProwith a value provider and renderer which is used to display the content when the cell is not in the edit mode.protected GridPro.EditColumn<E>GridPro.createEditColumn(Renderer<E> renderer, String columnId) Creates a new edit column instance for thisGridProinstance.Constructors in com.vaadin.flow.component.gridpro with parameters of type Renderer -
Uses of Renderer in com.vaadin.flow.component.treegrid
Subclasses of Renderer in com.vaadin.flow.component.treegridModifier and TypeClassDescriptionclassHierarchyColumnComponentRenderer<COMPONENT extends Component,SOURCE> Renders components as hierarchy column for tree grid. -
Uses of Renderer in com.vaadin.flow.component.virtuallist
Methods in com.vaadin.flow.component.virtuallist with parameters of type RendererModifier and TypeMethodDescriptionvoidVirtualList.setRenderer(Renderer<T> renderer) Sets a renderer for the items in the list. -
Uses of Renderer in com.vaadin.flow.data.renderer
Subclasses of Renderer in com.vaadin.flow.data.rendererModifier and TypeClassDescriptionclassBasicRenderer<SOURCE,TARGET> Abstract renderer used as the base implementation for renderers that outputs a simple value in the UI, such asNumberRendererandLocalDateRenderer.classComponentRenderer<COMPONENT extends Component,SOURCE> Base class for all renderers that support arbitraryComponents.classIconRenderer<ITEM>A renderer that renders each item as a text following by an icon using provided icon generator and label generator.classLitRenderer<SOURCE>LitRenderer is aRendererthat uses a Lit-based template literal to render given model objects in the components that support the JS renderer functions API.classLocalDateRenderer<SOURCE>A renderer for presenting date values.classLocalDateTimeRenderer<SOURCE>A renderer for presentingLocalDateTimeobjects.classNativeButtonRenderer<SOURCE>A renderer to create a clickable button.classNumberRenderer<SOURCE>A renderer for presenting number values.classTextRenderer<ITEM>A renderer that renders each item as a text using providedItemLabelGenerator.