BooleantreeNode.open

Overview[ depends on jquery.ztree.core js ]

Used to record the parent node's expand status.

1. When zTree initialize the node data, if you set treeNode.open = true, zTree will default expand this parent node.

2. Leaf node's 'open' attribute is false.

3. In order to solve the problem of someone make json data, supporting "false", "true" format of the data string.

Default: false

Boolean Format

true means: the parent node is expanded.

false means: the parent node is collapsed.

Examples of treeNode

1. Get the first selected node's expand status.

var treeObj = $.fn.zTree.getZTreeObj("tree");
var sNodes = treeObj.getSelectedNodes();
if (sNodes.length > 0) {
	var isOpen = sNodes[0].open;
}