Listgroupfoot"

From Documentation
m
m ((via JWB))
 
(11 intermediate revisions by 6 users not shown)
Line 3: Line 3:
 
= Listgroupfoot =
 
= Listgroupfoot =
  
 +
*Demonstration: N/A
 
*Java API: <javadoc>org.zkoss.zul.Listgroupfoot</javadoc>
 
*Java API: <javadoc>org.zkoss.zul.Listgroupfoot</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zkex.sel.Listgroupfoot</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zkex.sel.Listgroupfoot</javadoc>
 +
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Listgroupfoot| Listgroupfoot]]
 +
*{{ZK PE and EE}}
  
 
= Employment/Purpose =
 
= Employment/Purpose =
Line 12: Line 15:
 
= Example =
 
= Example =
  
[[Image:ZKComRef_Listgroupfoot_Example.PNG]]  
+
[[Image:ZKComRef_Listgroup_Example.PNG]]  
  
  
Line 66: Line 69:
 
</source>
 
</source>
  
 +
=Supported Events=
  
=Supported events=
+
{| class='wikitable' | width="100%"
 
 
{| border="1" | width="100%"
 
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
Line 76: Line 78:
 
| None
 
| None
 
|}
 
|}
 +
*Inherited Supported Events: [[ZK_Component_Reference/Data/Listbox/Listitem#Supported_Events | Listitem]]
  
 
=Supported Children=
 
=Supported Children=
Line 81: Line 84:
 
  <javadoc>org.zkoss.zul.Listcell</javadoc>
 
  <javadoc>org.zkoss.zul.Listcell</javadoc>
  
=Use cases=
+
=Use Cases=
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
| 5.0+
+
| &nbsp;
 
| &nbsp;
 
| &nbsp;
 
| &nbsp;
 
| &nbsp;
Line 92: Line 95:
  
 
=Version History=
 
=Version History=
 +
{{LastUpdated}}
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
| 5.x.x
+
| &nbsp;
| x/x/20xx
+
| &nbsp;
| Initialization
+
| &nbsp;
 
|}
 
|}
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Latest revision as of 11:05, 7 January 2022

Listgroupfoot

Employment/Purpose

GroupFooter serves as a summary listitem of listgroup.

Example

ZKComRef Listgroup Example.PNG


<?xml version="1.0" encoding="UTF-8"?>
 <zk>
     Listbox support Grouping
     <listbox id="listbox" width="250px">
         <listhead sizable="true" id="h">
             <listheader id="h1" label="name" sort="auto" />
             <listheader id="h2" label="gender" sort="auto" />
         </listhead>
         <listgroup id="gp1" open="false">
             <listcell label="Group1"/>
             <listcell label="Group2"/>
         </listgroup>
         <listitem>
             <listcell label="a Mary" />
             <listcell label="a FEMALE" />
         </listitem>
         <listitem>
             <listcell label="b Mary" />
             <listcell label="b FEMALE" />
         </listitem>
         <listitem id="li1">
             <listcell label="c Mary1" />
             <listcell label="c FEMALE1" />
         </listitem>
         <listitem>
             <listcell label="d Mary" />
             <listcell label="d FEMALE" />
         </listitem>
         <listitem>
             <listcell label="e John" />
             <listcell label="e MALE" />
         </listitem>
         <listgroupfoot id="f1">
             <listcell label="10 emails" />
             <listcell label="zk1" />
         </listgroupfoot>
         <listgroup id="g2" label="Grouping 2" />
         <listitem>
             <listcell label="Jane" />
             <listcell label="FEMALE" />
         </listitem>
         <listitem>
             <listcell label="Henry" />
             <listcell label="MALE" />
         </listitem>

     </listbox>
 </zk>

Supported Events

Name
Event Type
None None

Supported Children

Listcell

Use Cases

Version Description Example Location
     

Version History

Last Update : 2022/01/07


Version Date Content
     



Last Update : 2022/01/07

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