Stringsetting.data.key.children

Overview[ depends on jquery.ztree.core js ]

The node data's attribute to save the child nodes.

Default: "children"

Examples of setting

1. Set the 'nodes' attribute to save the child nodes.

var setting = {
	data: {
		key: {
			children: "nodes"
		}
	}
};
......