您好,登錄后才能下訂單哦!
這篇文章主要介紹了bootstrap中treeview擴展addNode方法動態(tài)添加子節(jié)點的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
bootstrap-treeview是一款效果非??岬幕赽ootstrap的jQuery多級列表樹插件。該jQuery插件基于Twitter Bootstrap,以簡單和優(yōu)雅的方式來顯示一些繼承樹結(jié)構(gòu),如視圖樹、列表樹等等。
本文只是詳細說明對bootstrap-treeview添加子節(jié)點的擴展方法(addNode),如了解bootstrap-treeview所有用法請看官方API
官方api https://www.npmjs.com/package/bootstrap-treeview (點擊新窗口打開)
使用過程中,需要動態(tài)添加子節(jié)點。發(fā)現(xiàn)api中沒有此功能。找了很多資料也沒有發(fā)現(xiàn)有相關(guān)的方法。
又不想放棄使用它,看來只能自己寫的。先讀他們的源代碼,看他們的邏輯關(guān)系,然后就下手自己寫一下。不多說,直接上代碼
第一步:在Tree主函數(shù)return {/*在這里添加addNode的入口*/}
看圖比較直觀
附上代碼:
addNode: $.proxy(this.addNode, this),
第二步:添加Tree的prototype方法
/** 給節(jié)點添加子節(jié)點 @param {Object|Number} identifiers - A valid node, node id or array of node identifiers @param {optional Object} options.node; */ Tree.prototype.addNode = function (identifiers, options) { this.forEachIdentifier(identifiers, options, $.proxy(function (node, options) { this.setAddNode(node, options); }, this)); this.setInitialStates({ nodes: this.tree }, 0); this.render(); } /** * 添加子節(jié)點 */ Tree.prototype.setAddNode = function (node, options) { if (node.nodes == null) node.nodes = []; if (options.node) { node.nodes.push(options.node); }; };
看圖:
第三步:就是如何使用了。
$("#Treeview01").treeview("addNode", [2, { node: { text: "新加的菜單", href: "001005" } }]);
注意 $("#Treeview01")使用data已初始化過的
下面看個實例TreeView動態(tài)添加節(jié)點
遍歷某路徑下的文件夾添加父節(jié)點,遍歷文件夾下的文件添加子節(jié)點
private void button1_Click(object sender, EventArgs e) { FolderBrowserDialog fd = new FolderBrowserDialog(); if (fd.ShowDialog() == DialogResult.OK) { // 在此添加代碼,選擇的路徑為 folderBrowserDialog1.SelectedPath if (Directory.Exists(fd.SelectedPath)) { DirectoryInfo thisOne = new DirectoryInfo(fd.SelectedPath); DirectoryInfo[] directoryInfo = thisOne.GetDirectories(); for (int i = 0; i < directoryInfo.Length; i++) { TreeNode root = new TreeNode(directoryInfo[i].ToString());//創(chuàng)建節(jié)點 root.Name = directoryInfo[i].ToString(); //為節(jié)點取個名字,這兒創(chuàng)建的是根節(jié)點 root.Tag = 0; treeView1.Nodes.Add(root); //將節(jié)點添加到treeView1上 DirectoryInfo thisTwo = new DirectoryInfo(fd.SelectedPath + "\\" + directoryInfo[i].ToString()); FileInfo[] fileInfo = thisTwo.GetFiles(); for (int j = 0; j < fileInfo.Length; j++) { TreeNode node = new TreeNode(fileInfo[j].ToString()); node.Tag = 1; node.Name = fileInfo[j].ToString(); if (!root.Nodes.ContainsKey(node.Name)) { root.Nodes.Add(node); } } } } } }
感謝你能夠認真閱讀完這篇文章,希望小編分享的“bootstrap中treeview擴展addNode方法動態(tài)添加子節(jié)點的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。