Organigram Template"

From Documentation
m ((via JWB))
Line 27: Line 27:
 
=Version History=
 
=Version History=
 
{{LastUpdated}}
 
{{LastUpdated}}
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Revision as of 08:18, 11 January 2022


Organigram Template


  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png

Since 8.6.0

Similar to Listbox, you can also define a customer rendering with a template for an organigram:

	<zscript><![CDATA[
	DefaultTreeNode root = new DefaultTreeNode(null, new DefaultTreeNode[]{
		new DefaultTreeNode("Item1", new DefaultTreeNode[]{
			new DefaultTreeNode("Item2"), new DefaultTreeNode("Item3"), new DefaultTreeNode("Item4")
		})
	});
	DefaultTreeModel model = new DefaultTreeModel(root);
	model.addOpenPath(new int[]{0});
	]]></zscript>
	<organigram model="${model}">
		<template name="model">
			<orgitem>
				<orgnode label="${each.data}"/>
			</orgitem>
		</template>
	</organigram>

Version History

Last Update : 2022/01/11


Version Date Content
8.6.0 Oct 2018 The organigram component was introduced.



Last Update : 2022/01/11

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