Footer

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.

<grid>
    <columns>    
        <column label="Type"/>        
        <column label="Content"/>        
    </columns>    
    <rows>    
        <row>        
            <label value="File:"/>            
            <textbox width="99%"/>            
        </row>        
        <row>        
            <label value="Type:"/>            
            <hbox>            
                <listbox rows="1" mold="select">                
                    <listitem label="Java Files,(*.java)"/>                    
                    <listitem label="All Files,(*.*)"/>                    
                </listbox>                
                <button label="Browse..."/>                
            </hbox>            
        </row>        
    </rows>    
    <foot>    
        <footer>footer1</footer>        
        <footer>footer2</footer>        
    <foot>    
</grid>

Class Name

org.zkoss.zul.Footer

Supported Child Components

*ALL

Supported Events

*NONE

Properties

Property

Description

Data Type

Default Value

span

Sets wether the song Flash movie playing automatically

int

1

Methods

Name

Description

Return Data Type

getColumn()

Returns the column that is in the same column as this footer, or null if not available.

org.zkoss.zul.Column

getColumnIndex()

Returns the column index, starting from 0.

int

getGrid()

Returns the grid that this belongs to.

org.zkoss.zul.Grid

setParent(org.zkoss.zk.ui.Component parent)

void

Inherited From