Uses of Class
com.vaadin.flow.data.renderer.Renderer
-
Uses of Renderer in com.vaadin.flow.component.combobox
Methods in com.vaadin.flow.component.combobox with parameters of type RendererModifier and TypeMethodDescriptionvoid
ComboBoxBase.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 TypeClassDescriptionclass
ColumnPathRenderer<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 this
Grid
with a renderer and default column factory.protected <C extends Grid.Column<T>>
CAdds a new text column to this
Grid
with 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.void
Grid.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 this
Grid
with 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 this
Grid
with 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 TypeClassDescriptionclass
Renderer and DataGenerator used by
Grid.Column
to 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 this
GridPro
with 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 this
GridPro
instance.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 TypeClassDescriptionclass
HierarchyColumnComponentRenderer<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 TypeMethodDescriptionvoid
VirtualList.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 TypeClassDescriptionclass
BasicRenderer<SOURCE,
TARGET> Abstract renderer used as the base implementation for renderers that outputs a simple value in the UI, such as
NumberRenderer
andLocalDateRenderer
.class
ComponentRenderer<COMPONENT extends Component,
SOURCE> Base class for all renderers that support arbitrary
Component
s.class
IconRenderer<ITEM>
A renderer that renders each item as a text following by an icon using provided icon generator and label generator.
class
LitRenderer<SOURCE>
LitRenderer is a
Renderer
that uses a Lit-based template literal to render given model objects in the components that support the JS renderer functions API.class
LocalDateRenderer<SOURCE>
A renderer for presenting date values.
class
LocalDateTimeRenderer<SOURCE>
A renderer for presenting
LocalDateTime
objects.class
NativeButtonRenderer<SOURCE>
A renderer to create a clickable button.
class
NumberRenderer<SOURCE>
A renderer for presenting number values.
class
TextRenderer<ITEM>
A renderer that renders each item as a text using provided
ItemLabelGenerator
.