Stringsetting.async.dataType

Overview[ depends on jquery.ztree.core js ]

The data type of Ajax. It is valid when [setting.async.enable = true]

Default:"text"

String Format

dataType = "text", It can meet most of the needs.

The 'dataType' in zTree and jQuery's ajax is same.

Examples of setting

1. Set the dataType which ajax got is text.

var setting = {
	async: {
		enable: true,
		dataType: "text",
		url: "http://host/getNode.php",
		autoParam: ["id", "name"]
	}
};
......