org.apache.tapestry5.corelib.data
public enum class: GridPagerPosition [javadoc |
source]
java.lang.Enum
org.apache.tapestry5.corelib.data.GridPagerPosition
Used by the
Grid component to control where the pager portion of the Grid should be displayed.
| Field Summary |
|---|
| public GridPagerPosition | TOP | Position the pager above the Grid's table. |
| public GridPagerPosition | BOTTOM | Position the pager below the Grid's table (this is the default). |
| public GridPagerPosition | BOTH | Show the pager above and below the Grid's table. |
| public GridPagerPosition | NONE | Don't show a pager (the application will need to supply its own navigation mechanism). |
| Method from org.apache.tapestry5.corelib.data.GridPagerPosition Detail: |
public boolean isMatchBottom() {
return matchBottom;
}
|
public boolean isMatchTop() {
return matchTop;
}
|