Plumtree Portal UI  
 

TemplateTreeAS.GetTreeSpecificArrayDataToAppend Method 

Override this method to attach additional information specific to your implementation of the tree. Below is an example of how to do this. XPStringBuilder sb = new XPStringBuilder(); sb.Append("myArray[").Append(iSelectedItemIndex).Append("].") .Append(OBJECT_CLASS_ID).Append(" = '") .Append(((TreeLeafNode) mySelectedItems.GetElement(iSelectedItemIndex)).m_nClassID) .Append("';\n"); return sb.ToString();

public override string GetTreeSpecificArrayDataToAppend(
   int iSelectedItemIndex
);

Parameters

iSelectedItemIndex

Return Value

String

See Also

TemplateTreeAS Class | com.plumtree.portaluiinfrastructure.tree.template Namespace