We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.client.widget.grid.
Interface CellStyleGenerator<T>
-
Type Parameters:
T
- the row type of the target gridpublic interface CellStyleGenerator<T>
Callback interface for generating custom style names for cells.
Since:
7.4
Author:
Vaadin Ltd
See Also:
-
-
Method Summary
All Methods Modifier and Type Method Description String
getStyle(CellReference<T> cellReference)
Called by Grid to generate a style name for a column element.
-
-
-
Method Detail
-
getStyle
String getStyle(CellReference<T> cellReference)
Called by Grid to generate a style name for a column element.
Parameters:
cellReference
- The cell to generate a style forReturns:
the style name to add to this cell, or
null
to not set any style
-
-