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

    文檔首頁>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:創(chuàng)建具有主數(shù)據(jù)網(wǎng)格的子網(wǎng)格

    jQuery EasyUI使用教程:創(chuàng)建具有主數(shù)據(jù)網(wǎng)格的子網(wǎng)格


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

    使用數(shù)據(jù)網(wǎng)格的詳細(xì)視圖,用戶可以展開一行來顯示附加的詳細(xì)信息。任何內(nèi)容都可以加載作為行詳細(xì),子網(wǎng)格也可以動態(tài)加載。本教程將向您展示如何在主網(wǎng)格上創(chuàng)建一個子網(wǎng)格。

    在數(shù)據(jù)網(wǎng)格中擴(kuò)展行顯示詳細(xì)信息

    Step 1:創(chuàng)建主數(shù)據(jù)網(wǎng)格

    <table id="dg" style="width:700px;height:250px"
    url="datagrid22_getdata.php"
    title="DataGrid - SubGrid"
    singleSelect="true" fitColumns="true">
    <thead>
    <tr>
    <th field="itemid" width="80">Item ID</th>
    <th field="productid" width="100">Product ID</th>
    <th field="listprice" align="right" width="80">List Price</th>
    <th field="unitcost" align="right" width="80">Unit Cost</th>
    <th field="attr1" width="220">Attribute</th>
    <th field="status" width="60" align="center">Status</th>
    </tr>
    </thead>
    </table>

    Step 2:設(shè)置詳細(xì)視圖顯示子網(wǎng)格

    為了使用詳細(xì)視圖,請記得在頁面頭部引用視圖腳本文件。

    <script type="text/javascript" src="http://www.jeasyui.com/easyui/datagrid-detailview.js"></script>
    $('#dg').datagrid({
    view: detailview,
    detailFormatter:function(index,row){
    return '<div style="padding:2px"><table class="ddv"></table></div>';
    },
    onExpandRow: function(index,row){
    var ddv = $(this).datagrid('getRowDetail',index).find('table.ddv');
    ddv.datagrid({
    url:'datagrid22_getdetail.php?itemid='+row.itemid,
    fitColumns:true,
    singleSelect:true,
    rownumbers:true,
    loadMsg:'',
    height:'auto',
    columns:[[
    {field:'orderid',title:'Order ID',width:100},
    {field:'quantity',title:'Quantity',width:100},
    {field:'unitprice',title:'Unit Price',width:100}
    ]],
    onResize:function(){
    $('#dg').datagrid('fixDetailRowHeight',index);
    },
    onLoadSuccess:function(){
    setTimeout(function(){
    $('#dg').datagrid('fixDetailRowHeight',index);
    },0);
    }
    });
    $('#dg').datagrid('fixDetailRowHeight',index);
    }
    });

    當(dāng)用戶點擊展開按鈕('+')時,'onExpandRow' 事件將被觸發(fā)。 我們創(chuàng)建一個新的帶有三列的子網(wǎng)格。 當(dāng)子網(wǎng)格數(shù)據(jù)加載成功時或者改變尺寸大小時,請記得對主網(wǎng)格調(diào)用 'fixDetailRowHeight' 方法。

    Step 3:服務(wù)器端代碼

    datagrid22_getdata.php

    $result = array();
    
    include 'conn.php';
    
    $rs = mysql_query("select * from item where itemid in (select itemid from lineitem)");
    
    $items = array();
    while($row = mysql_fetch_object($rs)){
    array_push($items, $row);
    }
    
    echo json_encode($items);
    
    datagrid22_getdetail.php
    
    include 'conn.php';
    
    $itemid = mysql_real_escape_string($_REQUEST['itemid']);
    
    $rs = mysql_query("select * from lineitem where itemid='$itemid'");
    $items = array();
    while($row = mysql_fetch_object($rs)){
    array_push($items, $row);
    }
    echo json_encode($items);

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

    購買正版授權(quán)的朋友可以點擊"咨詢在線客服"哦~~~
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    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); })();