| org.zkoss.zul.impl.LabelImageElement org.zkoss.zul.Footer
Footer | public class Footer extends LabelImageElement (Code) | | A column of the footer of a grid (
Grid ).
Its parent must be
Foot .
Unlike
Column , you could place any child in a grid footer.
author: tomyeh |
Method Summary | |
public Column | getColumn() Returns the column that is in the same column as
this footer, or null if not available. | public int | getColumnIndex() Returns the column index, starting from 0. | public Foot | getFoot() Returns the set of footers that this belongs to. | public Grid | getGrid() Returns the grid that this belongs to. | public String | getOuterAttrs() | public int | getSpan() Returns number of columns to span this footer. | public void | setParent(Component parent) | public void | setSpan(int span) Sets the number of columns to span this footer. |
getColumn | public Column getColumn()(Code) | | Returns the column that is in the same column as
this footer, or null if not available.
|
getColumnIndex | public int getColumnIndex()(Code) | | Returns the column index, starting from 0.
|
getFoot | public Foot getFoot()(Code) | | Returns the set of footers that this belongs to.
|
getGrid | public Grid getGrid()(Code) | | Returns the grid that this belongs to.
|
getSpan | public int getSpan()(Code) | | Returns number of columns to span this footer.
Default: 1.
|
setSpan | public void setSpan(int span)(Code) | | Sets the number of columns to span this footer.
It is the same as the colspan attribute of HTML TD tag.
|
|
|