Implementing the View"

From Documentation
m
(first 2.5 sections)
Line 2: Line 2:
  
 
=Implementing the View=
 
=Implementing the View=
Suppose the figure below is the requirement for the "Product View" in our shopping cart application:
+
Suppose the figure below is the requirement for the "Product View" in our shopping cart application:<br>
[[Image:product_view.png]]
+
[[Image:product_view.png]]<br>
 
Here we have six columns, each with a header to denote the data field, and six rows with each row containing a single product entry.
 
Here we have six columns, each with a header to denote the data field, and six rows with each row containing a single product entry.
 +
==Why Use Grid==
 +
Some candidates at our disposal for implementing this view include the plain HTML table component, ZK's Listbox component, and the Grid component. <br>
 +
Grid comes out as the component of choice for the "Product View" implementation because although the HTML table component is light weight, it does not support the data modeling utilities that make ZK application development so fast and efficient. The Listbox component allows us to retrieve the selected items in the Listbox, which we do not need for this "Product View" implementation.
 +
==Grid as a Component Container==
 +
Grid is a component that contains rows and columns which allow us to layout other ZK components in a tabular manner. For example, the "Product View" outlines each product entry in a row, with the first column holding the Image component, second to fifth columns containing labels, and the last column enclosing a Cell component which in turn houses the Spinner and Button components. <br>
 +
In fact, within Grid's Row component, Grid can contain all ZK components, including itself.
 +
==How to Build a Grid==
 +
A Grid is composed of two parts, the Columns and Rows tags. The Columns tag is used to house the Column components which show the column headers, while the Rows tag contains the Row components that present the data.
 +
<source lang="xml">
 +
<grid width="400px"  >
 +
<columns>
 +
<column label="Column Header 1" />
 +
<column label="Column Header 2" />
 +
</columns>
 +
<rows >
 +
<row >
 +
    <label value="Row 1 - Item 1"/>
 +
    <label value="Row 1 - Item 2"/>
 +
</row>
 +
<row >
 +
    <label value="Row 2 - Item 1"/>
 +
    <label value="Row 2 - Item 2"/>
 +
</row>
 +
</rows>
 +
</grid>
 +
</source>
 +
[[Image:simple_grid.png]]

Revision as of 09:06, 11 October 2010

Stop.png This article is out of date, please refer to http://books.zkoss.org/zkessentials-book/master/ for more up to date information.


Implementing the View

Suppose the figure below is the requirement for the "Product View" in our shopping cart application:
File:Product view.png
Here we have six columns, each with a header to denote the data field, and six rows with each row containing a single product entry.

Why Use Grid

Some candidates at our disposal for implementing this view include the plain HTML table component, ZK's Listbox component, and the Grid component.
Grid comes out as the component of choice for the "Product View" implementation because although the HTML table component is light weight, it does not support the data modeling utilities that make ZK application development so fast and efficient. The Listbox component allows us to retrieve the selected items in the Listbox, which we do not need for this "Product View" implementation.

Grid as a Component Container

Grid is a component that contains rows and columns which allow us to layout other ZK components in a tabular manner. For example, the "Product View" outlines each product entry in a row, with the first column holding the Image component, second to fifth columns containing labels, and the last column enclosing a Cell component which in turn houses the Spinner and Button components.
In fact, within Grid's Row component, Grid can contain all ZK components, including itself.

How to Build a Grid

A Grid is composed of two parts, the Columns and Rows tags. The Columns tag is used to house the Column components which show the column headers, while the Rows tag contains the Row components that present the data.

<grid width="400px"  >
	<columns>	
		<column label="Column Header 1" />
		<column label="Column Header 2" />
	</columns>
	<rows >
		<row >
		     <label value="Row 1 - Item 1"/>
		     <label value="Row 1 - Item 2"/>
		</row>	
		<row >
		     <label value="Row 2 - Item 1"/>
		     <label value="Row 2 - Item 2"/>
		</row>
	</rows>	
</grid>

Simple grid.png