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 DetailsGenerator
-
All Known Subinterfaces:
public interface DetailsGenerator
A callback interface for generating details for a particular row in Grid.
Since:
7.5.0
Author:
Vaadin Ltd
-
-
Field Summary
Fields Modifier and Type Field Description static DetailsGenerator
NULL
A details generator that provides no details
-
Method Summary
All Methods Modifier and Type Method Description com.google.gwt.user.client.ui.Widget
getDetails(int rowIndex)
This method is called for whenever a new details row needs to be generated.
-
-
-
Field Detail
-
NULL
static final DetailsGenerator NULL
A details generator that provides no details
-
-
Method Detail
-
getDetails
com.google.gwt.user.client.ui.Widget getDetails(int rowIndex)
This method is called for whenever a new details row needs to be generated.
Parameters:
rowIndex
- the index of the row for which to generate detailsReturns:
the details for the given row, or
null
to leave the details empty.
-
-