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

    文檔首頁(yè)>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:在樹網(wǎng)格中動(dòng)態(tài)加載

    jQuery EasyUI使用教程:在樹網(wǎng)格中動(dòng)態(tài)加載


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

    動(dòng)態(tài)加載樹網(wǎng)格有助于從服務(wù)器上加載部分的行數(shù)據(jù),避免加載大型數(shù)據(jù)的長(zhǎng)時(shí)間等待。本教程將向您展示如何創(chuàng)建具有動(dòng)態(tài)加載特性的樹網(wǎng)格。

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

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

    <table title="Products" class="easyui-treegrid" style="width:700px;height:300px"
    url="treegrid3_getdata.php"
    rownumbers="true"
    idField="id" treeField="name">
    <thead>
    <tr>
    <th field="name" width="250">Name</th>
    <th field="quantity" width="100" align="right">Quantity</th>
    <th field="price" width="150" align="right" formatter="formatDollar">Price</th>
    <th field="total" width="150" align="right" formatter="formatDollar">Total</th>
    </tr>
    </thead>
    </table>

    服務(wù)器代碼

    treegrid3_getdata.php

    $id = isset($_POST['id']) ? intval($_POST['id']) : 0;
    
    include 'conn.php';
    $result = array();
    $rs = mysql_query("select * from products where parentId=$id");
    while($row = mysql_fetch_array($rs)){
    $row['state'] = has_child($row['id']) ? 'closed' : 'open';
    $row['total'] = $row['price']*$row['quantity'];
    array_push($result, $row);
    }
    
    echo json_encode($result);
    
    function has_child($id){
    $rs = mysql_query("select count(*) from products where parentId=$id");
    $row = mysql_fetch_array($rs);
    return $row[0] &gt; 0 ? true : false;
    }

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

    購(gòu)買正版授權(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); })();