setting.async.otherParam.html 2.0 KB
Newer Older
Z
ztree 已提交
1 2
<div class="apiDetail">
<div>
3
	<h2><span>Array(String) / JSON / Function(treeId, treeNode)</span><span class="path">setting.async.</span>otherParam</h2>
Z
ztree 已提交
4 5 6 7
	<h3>Overview<span class="h3_info">[ depends on <span class="highlight_green">jquery.ztree.core</span> js ]</span></h3>
	<div class="desc">
		<p></p>
		<div class="longdesc">
Z
ztree 已提交
8
			<p>The query parameters of the Ajax request. (key - value) It is valid when <span class="highlight_red">[setting.async.enable = true]</span></p>
Z
ztree 已提交
9 10 11 12 13
			<p>Default: [ ]</p>
		</div>
	</div>
	<h3>Array(String) Format</h3>
	<div class="desc">
Z
ztree 已提交
14
	<p>Can be an empty array. e.g. [ ].  The array should contain key value pairs, e.g. [key, value]. (Either or [key] or [key, value, key] is wrong!!)</p>
Z
ztree 已提交
15 16 17
	</div>
	<h3>JSON Format</h3>
	<div class="desc">
Z
ztree 已提交
18
	<p>Use JSON hash data to set the key-value pairs. e.g. { key1:value1, key2:value2 }</p>
Z
ztree 已提交
19
	</div>
20 21 22 23 24 25 26 27 28 29
	<h3>Function Parameter Descriptions</h3>
	<div class="desc">
		<h4><b>treeId</b><span>String</span></h4>
		<p>zTree unique identifier: <b class="highlight_red">treeId</b>.</p>
		<h4 class="topLine"><b>treeNode</b><span>JSON</span></h4>
		<p>Parent node's JSON data object</p>
		<p class="highlight_red">When asynchronously loading the root, the treeNode = null</p>
		<h4 class="topLine"><b>Return </b><span>Array(String) || JSON</span></h4>
		<p>Return value is same as 'Array(String) || JSON Format'</p>
	</div>
Z
ztree 已提交
30
	<h3>Examples of setting</h3>
Z
ztree 已提交
31
	<h4>1. Using Array(String) Format</h4>
Z
ztree 已提交
32 33 34 35
	<pre xmlns=""><code>var setting = {
	async: {
		enable: true,
		url: "http://host/getNode.php",
Z
ztree 已提交
36
		<span style="color:red">otherParam: ["id", "1", "name", "test"]</span>
Z
ztree 已提交
37 38
	}
};
Z
ztree 已提交
39 40
when zTree sends the ajax request, the query string will be like this: id=1&name=test</code></pre>
	<h4>2. Using JSON data Format</h4>
Z
ztree 已提交
41 42 43 44
	<pre xmlns=""><code>var setting = {
	async: {
		enable: true,
		url: "http://host/getNode.php",
Z
ztree 已提交
45
		<span style="color:red">otherParam: { "id":"1", "name":"test"}</span>
Z
ztree 已提交
46 47
	}
};
Z
ztree 已提交
48
when zTree sends the ajax request, the query string will be like this: id=1&name=test</code></pre>
Z
ztree 已提交
49 50
</div>
</div>