Package com.vaadin.v7.ui
Interface Grid.DetailsGenerator
-
-
Field Summary
Fields Modifier and Type Field Description static Grid.DetailsGenerator
NULL
Deprecated.A details generator that provides no details.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description com.vaadin.ui.Component
getDetails(Grid.RowReference rowReference)
Deprecated.This method is called for whenever a details row needs to be shown on the client.
-
-
-
Field Detail
-
NULL
static final Grid.DetailsGenerator NULL
Deprecated.A details generator that provides no details.
-
-
Method Detail
-
getDetails
com.vaadin.ui.Component getDetails(Grid.RowReference rowReference)
Deprecated.This method is called for whenever a details row needs to be shown on the client. Grid removes all of its references to details components when they are no longer displayed on the client-side and will re-request once needed again.Note: If a component gets generated, it may not be manually attached anywhere. The same details component can not be displayed for multiple different rows.
- Parameters:
rowReference
- the reference for the row for which to generate details- Returns:
- the details for the given row, or
null
to leave the details empty.
-
-