Stringsetting.data.key.name

Overview[ depends on jquery.ztree.core js ]

The node data's attribute to save the node name.

Default: "name"

Examples of setting

1. Set the 'ename' attribute to save the node name.

var setting = {
	data: {
		key: {
			name: "ename"
		}
	}
};
......