CLIENT GUI Framework
[vnfsdk/refrepo.git] / openo-portal / portal-common / src / main / webapp / common / thirdparty / zTree / api / en / treeNode.isAjaxing.html
1 <div class="apiDetail">\r
2 <div>\r
3         <h2><span>Boolean</span><span class="path">treeNode.</span>isAjaxing</h2>\r
4         <h3>Overview<span class="h3_info">[ depends on <span class="highlight_green">jquery.ztree.core</span> js ]</span></h3>\r
5         <div class="desc">\r
6                 <p></p>\r
7                 <div class="longdesc">\r
8                         <p>Judge whether the node's child nodes being loaded asynchronously.</p>\r
9                         <p class="highlight_red">Do not initialize or modify it, it is created by the zTree.</p>\r
10                 </div>\r
11         </div>\r
12         <h3>Boolean Format</h3>\r
13         <div class="desc">\r
14         <p> true means: the node's child nodes is being loaded asynchronously</p>\r
15         <p> false means: the node's child nodes is not being loaded asynchronously</p>\r
16         </div>\r
17         <h3>Examples of treeNode</h3>\r
18         <h4>1. Judge whether the first selected node's child nodes being loaded asynchronously</h4>\r
19         <pre xmlns=""><code>var treeObj = $.fn.zTree.getZTreeObj("tree");\r
20 var sNodes = treeObj.getSelectedNodes();\r
21 if (sNodes.length > 0) {\r
22         var isAjaxing = sNodes[0].isAjaxing;\r
23 }\r
24 </code></pre>\r
25 </div>\r
26 </div>