Package io.jmix.ui.component
Interface Table.ColumnGenerator<E>
- All Known Subinterfaces:
 Table.PrintableColumnGenerator<E,P> 
- All Known Implementing Classes:
 DeclarativeColumnGenerator
public static interface Table.ColumnGenerator<E>
Allows rendering of an arbitrary 
Component inside a table cell.- 
Method Summary
Modifier and TypeMethodDescriptiongenerateCell(E entity) Called byTablewhen rendering a column for which the generator was created. 
- 
Method Details
- 
generateCell
Called byTablewhen rendering a column for which the generator was created.- Parameters:
 entity- an entity instance represented by the current row- Returns:
 - a component to be rendered inside of the cell
 
 
 -