diff options
Diffstat (limited to 'common/src/main/webapp/thirdparty/zTree/api/cn/setting.view.removeHoverDom.html')
-rwxr-xr-x | common/src/main/webapp/thirdparty/zTree/api/cn/setting.view.removeHoverDom.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/common/src/main/webapp/thirdparty/zTree/api/cn/setting.view.removeHoverDom.html b/common/src/main/webapp/thirdparty/zTree/api/cn/setting.view.removeHoverDom.html new file mode 100755 index 00000000..bb1a9aa2 --- /dev/null +++ b/common/src/main/webapp/thirdparty/zTree/api/cn/setting.view.removeHoverDom.html @@ -0,0 +1,45 @@ +<div class="apiDetail"> +<div> + <h2><span>Function(treeId, treeNode)</span><span class="path">setting.view.</span>removeHoverDom</h2> + <h3>概述<span class="h3_info">[ 依赖 <span class="highlight_green">jquery.ztree.exedit</span> 扩展 js ]</span></h3> + <div class="desc"> + <p></p> + <div class="longdesc"> + <p>用于当鼠标移出节点时,隐藏用户自定义控件,显示隐藏状态同 zTree 内部的编辑、删除按钮</p> + <p class="highlight_red">请务必与 <span class="highlight_red">addHoverDom</span> 同时使用;属于高级应用,使用时请确保对 zTree 比较了解。</p> + <p>默认值:null</p> + </div> + </div> + <h3>Function 参数说明</h3> + <div class="desc"> + <h4><b>treeId</b><span>String</span></h4> + <p>对应 zTree 的 <b class="highlight_red">treeId</b>,便于用户操控</p> + <h4><b>treeNode</b><span>JSON</span></h4> + <p>需要隐藏自定义控件的节点 JSON 数据对象</p> + </div> + <h3>setting & function 举例</h3> + <h4>1. 设置鼠标移到节点上,在后面显示一个按钮</h4> + <pre xmlns=""><code>var setting = { + view: { + addHoverDom: addHoverDom, + removeHoverDom: removeHoverDom, + ...... + } +}; +function addHoverDom(treeId, treeNode) { + var aObj = $("#" + treeNode.tId + "_a"); + if ($("#diyBtn_"+treeNode.id).length>0) return; + var editStr = "<span id='diyBtn_space_" +treeNode.id+ "' > </span>" + + "<button type='button' class='diyBtn1' id='diyBtn_" + treeNode.id + + "' title='"+treeNode.name+"' onfocus='this.blur();'></button>"; + aObj.append(editStr); + var btn = $("#diyBtn_"+treeNode.id); + if (btn) btn.bind("click", function(){alert("diy Button for " + treeNode.name);}); +}; +function removeHoverDom(treeId, treeNode) { + $("#diyBtn_"+treeNode.id).unbind().remove(); + $("#diyBtn_space_" +treeNode.id).unbind().remove(); +}; +......</code></pre> +</div> +</div>
\ No newline at end of file |