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

    文檔首頁(yè)>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:在數(shù)據(jù)網(wǎng)格中擴(kuò)展行顯示詳細(xì)信息

    jQuery EasyUI使用教程:在數(shù)據(jù)網(wǎng)格中擴(kuò)展行顯示詳細(xì)信息


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

    數(shù)據(jù)網(wǎng)格可以更改它的視圖來(lái)顯示不同的效果。使用詳細(xì)視圖,數(shù)據(jù)網(wǎng)格可以在數(shù)據(jù)行的左邊顯示展開(kāi)按鈕(“+”或“-”)。用戶可以展開(kāi)行來(lái)顯示附加的詳細(xì)信息。

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

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

    <table id="dg" style="width:500px;height:250px"
    url="datagrid8_getdata.php"
    pagination="true" sortName="itemid" sortOrder="desc"
    title="DataGrid - Expand Row"
    singleSelect="true" fitColumns="true">
    <thead>
    <tr>
    <th field="itemid" width="60">Item ID</th>
    <th field="productid" width="80">Product ID</th>
    <th field="listprice" align="right" width="70">List Price</th>
    <th field="unitcost" align="right" width="70">Unit Cost</th>
    <th field="status" width="50" align="center">Status</th>
    </tr>
    </thead>
    </table>

    Step 2:為數(shù)據(jù)網(wǎng)格設(shè)置詳細(xì)視圖

    想要使用詳細(xì)視圖,請(qǐng)記住在頁(yè)面頭部引用視圖腳本文件。

    <script type="text/javascript" src="http://www.jeasyui.com/easyui/datagrid-detailview.js"></script>
    $('#dg').datagrid({
    view: detailview,
    detailFormatter:function(index,row){
    return '<div class="ddv" style="padding:5px 0"></div>';
    },
    onExpandRow: function(index,row){
    var ddv = $(this).datagrid('getRowDetail',index).find('div.ddv');
    ddv.panel({
    border:false,
    cache:false,
    href:'datagrid21_getdetail.php?itemid='+row.itemid,
    onLoad:function(){
    $('#dg').datagrid('fixDetailRowHeight',index);
    }
    });
    $('#dg').datagrid('fixDetailRowHeight',index);
    }
    });

    我們定義 'detailFormatter' 函數(shù),告訴數(shù)據(jù)網(wǎng)格如何渲染詳細(xì)視圖。 在這種情況下,我們返回一個(gè)簡(jiǎn)單的 'div' 元素,它將充當(dāng)詳細(xì)內(nèi)容的容器。 請(qǐng)注意,詳細(xì)信息為空。當(dāng)用戶點(diǎn)擊展開(kāi)按鈕('+')時(shí),onExpandRow事件將被觸發(fā)。 所以我們可以寫一些代碼來(lái)加載ajax詳細(xì)內(nèi)容。最后我們調(diào)用'fixDetailRowHeight'方法來(lái)固定當(dāng)詳細(xì)內(nèi)容加載時(shí)的行高度。

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

    datagrid21_getdetail.php

    <?php
    include_once 'conn.php';
    
    $itemid = mysql_real_escape_string($_REQUEST['itemid']);
    
    $rs = mysql_query("select * from item where itemid='$itemid'");
    $item = mysql_fetch_array($rs);
    ?>
    
    <table class="dv-table" border="0" style="width:100%;">
    <tr>
    <td rowspan="3" style="width:60px">
    <?php
    $aa = explode('-',$itemid);
    $serno = $aa[1];
    $img = "images/shirt$serno.gif";
    echo "<img src=\"$img\" style=\"width:60px;margin-right:20px\" />";
    ?>
    </td>
    <td class="dv-label">Item ID: </td>
    <td><?php echo $item['itemid'];?></td>
    <td class="dv-label">Product ID:</td>
    <td><?php echo $item['productid'];?></td>
    </tr>
    <tr>
    <td class="dv-label">List Price: </td>
    <td><?php echo $item['listprice'];?></td>
    <td class="dv-label">Unit Cost:</td>
    <td><?php echo $item['unitcost'];?></td>
    </tr>
    <tr>
    <td class="dv-label">Attribute: </td>
    <td colspan="3"><?php echo $item['attr1'];?></td>
    </tr>
    </table>

    下載EasyUI示例:easyui-datagrid-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); })();