• <menu id="w2i4a"></menu>
  • logo jQuery EasyUI使用教程

    文檔首頁(yè)>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:在樹(shù)網(wǎng)格中延遲加載節(jié)點(diǎn)

    jQuery EasyUI使用教程:在樹(shù)網(wǎng)格中延遲加載節(jié)點(diǎn)


    Kendo UI for jQuery——?jiǎng)?chuàng)建現(xiàn)代Web應(yīng)用程序的最完整UI庫(kù)!查看詳情>>>

    有時(shí)我們已經(jīng)得到充分的分層樹(shù)形網(wǎng)格的數(shù)據(jù),我們還想讓樹(shù)形網(wǎng)格按層次延遲加載節(jié)點(diǎn)。首先,只加載頂層節(jié)點(diǎn);然后點(diǎn)擊節(jié)點(diǎn)的展開(kāi)圖標(biāo)來(lái)加載它的子節(jié)點(diǎn)。本教程展示如何創(chuàng)建帶有延遲加載特性的樹(shù)形網(wǎng)格。

    添加節(jié)點(diǎn)到樹(shù)形菜單

    創(chuàng)建樹(shù)網(wǎng)格

    <table id="test" title="Folder Browser" class="easyui-treegrid" style="width:700px;height:300px"
    data-options="
    url: 'data/treegrid_data.json',
    method: 'get',
    rownumbers: true,
    idField: 'id',
    treeField: 'name',
    loadFilter: myLoadFilter
    ">
    <thead>
    <tr>
    <th field="name" width="220">Name</th>
    <th field="size" width="100" align="right">Size</th>
    <th field="date" width="150">Modified Date</th>
    </tr>
    </thead>
    </table>

    為了放置加載子節(jié)點(diǎn),我們需要為每個(gè)節(jié)點(diǎn)重命名'children'屬性。 正如下面的代碼所示,'children'屬性重命名為'children1'。 當(dāng)展開(kāi)一個(gè)節(jié)點(diǎn)時(shí),我們調(diào)用'append'方法來(lái)加載它的子節(jié)點(diǎn)數(shù)據(jù)。

    'loadFilter'代碼

    function myLoadFilter(data,parentId){
    function setData(data){
    var todo = [];
    for(var i=0; i&ltdata.length; i++){
    todo.push(data[i]);
    }
    while(todo.length){
    var node = todo.shift();
    if (node.children && node.children.length){
    node.state = 'closed';
    node.children1 = node.children;
    node.children = undefined;
    todo = todo.concat(node.children1);
    }
    }
    }
    
    setData(data);
    var tg = $(this);
    var opts = tg.treegrid('options');
    opts.onBeforeExpand = function(row){
    if (row.children1){
    tg.treegrid('append',{
    parent: row[opts.idField],
    data: row.children1
    });
    row.children1 = undefined;
    tg.treegrid('expand', row[opts.idField]);
    }
    return row.children1 == undefined;
    };
    return data;
    }

    下載EasyUI示例:easyui-treegrid-demo.zip

    購(gòu)買(mǎi)正版授權(quán)的朋友可以點(diǎn)擊"咨詢?cè)诰€客服"哦~~~
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();