Footer"

From Documentation
m
Line 9: Line 9:
 
= Employment/Purpose =
 
= Employment/Purpose =
  
A column of the footer of a grid (
+
A column of the footer of a grid ([[ZK_Component_Reference/Data/Grid | Grid]]). Its parent must be  
[[ZK_Component_Reference/Data/Grid | Grid]]). Its parent must be  
 
 
[[ZK_Component_Reference/Data/Grid/Foot | Foot]].
 
[[ZK_Component_Reference/Data/Grid/Foot | Foot]].
  
Unlike Column, you could place any child in a grid footer.  
+
Unlike Column, you could place any child in a grid footer.
  
 
= Example =
 
= Example =

Revision as of 07:34, 30 April 2010

Footer

Employment/Purpose

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.

Example

ZKComRef Foot Example.png

 <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>

Supported events

Name
Event Type
None None

Supported Children

  • ALL

Use cases

Grid

Version History

Version Date Content
5.0.1 04/30/2010 Initialization



Last Update : 2010/04/30

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.