Organigram Template
From Documentation
Revision as of 01:54, 9 August 2018 by Charlesqiu (talk | contribs) (Created page with "{{ZKDevelopersReferencePageHeader}} Similar to Listbox, you can also define a customer rendering with a template ...")
Similar to Listbox, you can also define a customer rendering with a template for a tree:
<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
Version | Date | Content |
---|---|---|
6.0.0 | July 2011 | The template feature was introduced. |