Stringsetting.async.dataType

Overview[ depends on jquery.ztree.core js ]

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

Default:"text"

String Format

dataType = "text", There is probably no need to change this.

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

Examples of setting

1. Set the dataType which ajax retrieves to "text".

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