Title - property of the PmfTreeItem object
Description:
Displayed title of the tree item.
Note:
Property access
for read and write.
This property is also functional in
Web panels.
The value was entered in the
sTitle parameter when creating the object by the
PmfTreeItem.CreateItem method
If the
Title property is not set or is
null, then the
identifier of the item is displayed as a title of the item in the tree.
Example:
JavaScriptSelect and copy to clipboard
var oTreeItem = oTree.TreeRoot.CreateItem("Id1", "Item title");
var sTitle = oTreeItem.Title;
// Reading from the property
oTreeItem.Title = "Item title";
// Writing into the property