Column"

From Documentation
Line 19: Line 19:
  
 
<source lang="xml" >
 
<source lang="xml" >
 
+
<window title="Grid Demo" border="normal" width="50%">
<window title="Grid Demo" border="normal" width="360px">
+
<grid>
<zscript> class Comp implements Comparator { private boolean _asc;
+
<columns sizable="true">
public Comp(boolean asc) { _asc = asc; } public int compare(Object o1,
+
<column label="Type" hflex="min"/>
Object o2) { String s1 = o1.getChildren().get(0).getValue(), s2 =
+
<column label="Content" />
o2.getChildren().get(0).getValue(); int v = s1.compareTo(s2); return
+
</columns>
_asc ? v: -v; } } Comp asc = new Comp(true), dsc = new Comp(false);
+
<rows>
</zscript>
+
<row>
<grid>
+
<label value="File:" />
<columns sizable="true">
+
<textbox width="99%" />
<column label="Type" sortAscending="&#36;{asc}"
+
</row>
sortDescending="&#36;{dsc}"  width="50px"/>
+
<row>
<column label="Content" />
+
<label value="Type:" />
</columns>
+
<hbox>
<rows>
+
<listbox mold="select">
<row>
+
<listitem label="Java Files,(*.java)" />
<label value="File:" />
+
<listitem label="All Files,(*.*)" />
<textbox width="99%" />
+
</listbox>
</row>
+
<button label="Browse..." />
<row>
+
</hbox>
<label value="Type:" />
+
</row>
<hbox>
+
<row>
<listbox rows="1" mold="select">
+
<label value="Options:" />
<listitem label="Java Files,(*.java)" />
+
<textbox rows="3" width="99%" />
<listitem label="All Files,(*.*)" />
+
</row>
</listbox>
+
</rows>
<button label="Browse..." />
+
</grid>
</hbox>
+
</window>
</row>
 
<row>
 
<label value="Options:" />
 
<textbox rows="3" width="99%" />
 
</row>
 
</rows>
 
</grid>
 
</window>
 
 
</source>
 
</source>
  

Revision as of 02:02, 9 June 2020

Column

Employment/Purpose

A single column in a Columns element. Each child of the Column element is placed in each successive cell of the grid. The column with the most child elements determines the number of rows in each column. The use of column is mainly to define attributes for each cell in the grid.


Example

ZKComRef Grid Example.png

	<window title="Grid Demo" border="normal" width="50%">
		<grid>
			<columns sizable="true">
				<column label="Type" hflex="min"/>
				<column label="Content" />
			</columns>
			<rows>
				<row>
					<label value="File:" />
					<textbox width="99%" />
				</row>
				<row>
					<label value="Type:" />
					<hbox>
						<listbox mold="select">
							<listitem label="Java Files,(*.java)" />
							<listitem label="All Files,(*.*)" />
						</listbox>
						<button label="Browse..." />
					</hbox>
				</row>
				<row>
					<label value="Options:" />
					<textbox rows="3" width="99%" />
				</row>
			</rows>
		</grid>
	</window>

Supported Events

Name
Event Type
onSort
Event: SortEvent

Denotes user has sorted the row of this column.

onGroup
Event: SortEvent
  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion pe-ee.png

Denotes user has grouped all the cells under a column.

onUngroup
Event: SortEvent
  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png
[Since 6.5.0]

Denotes user has ungrouped all the cells under a column.

Supported Children

*ALL

Use Cases

Grid

Version History

Last Update : 2020/06/09


Version Date Content
6.5.0 June 2012 ZK-147: Support ungroup for grid's column menu



Last Update : 2020/06/09

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