Stringsetting.data.key.isParent

Overview[ depends on jquery.ztree.core js ]

The node data's attribute to save whether the node is the parent node.

Default: "isParent"

v3.5.32+

Examples of setting

1. Set the 'parent' attribute to save whether the node is the parent node.

var setting = {
	data: {
		key: {
			isParent: "parent"
		}
	}
};
......