3

我有一個引導樹視圖有兩個級別。我需要在樹視圖中的不同節點上添加不同的按鈕。將按鈕添加到引導樹視圖節點

這裏是我的結構

var tree = [ 
    { 
    text: "Parent 1", 
    nodes: [ 
     { 
     text: "Child 1", 
     nodes: [ 
      { 
      text: "Grandchild 1" 
      }, 
      { 
      text: "Grandchild 2" 
      } 
     ] 
     }, 
     { 
     text: "Child 2" 
     } 
    ] 
    } 

]; 

,我需要顯示每個子節點(這裏是兒童1名&兒童2)爲「上傳」按鈕上,需要添加兩個按鈕叫「刪除」 &「下載「孫子級別。

作爲像Kendo treeview這樣的引導樹視圖中的節點模板是否有任何東西?

回答

0

只要按照上面的

var btnid = 'btnEdit_node_' yourrecordid; 
    var button = " <div/><button type='button' id='btnEdit_" + data.id + "' class='btn btn-primary' onclick='exxecutefunction()'>" + 
     "<i class='glyphicon glyphicon-edit'></i> Edit" + 
     "</button>"; 

    var node = {}; 
    node.text = data.description + button; 
相關問題