Example Code of a Tree Applet Template
In this example, if the user clicks or expands a tree, then the <div od-type="applet-tree-list"> tag provides a placeholder for a list applet that Siebel CRM displays. The applet that Siebel CRM displays depends on the node that is currently chosen.
The following is example code of a tree applet template:
<!--View with tree applet in the first section and list applet in the second-->
<table border="0" cellspacing="0" cellpadding="1" width="100%">
<tr>
<!-- Begin Tree Applet -->
<td>
<div od-type="applet" id="1" hintText="Tree Applet"/>
</td>
<!-- Begin List Applet -->
<td>
<div od-type="applet-tree-list"/>
</td>
</tr>
</table>