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

    文檔首頁>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:合并數(shù)據(jù)網(wǎng)格的單元格

    jQuery EasyUI使用教程:合并數(shù)據(jù)網(wǎng)格的單元格


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

    <jQuery EasyUI最新試用版免費(fèi)下載>

    數(shù)據(jù)網(wǎng)格經(jīng)常需要合并多個(gè)單元格,本教程將教會(huì)您在數(shù)據(jù)網(wǎng)格中如何合并單元格。

    合并數(shù)據(jù)網(wǎng)格的單元格,您只需要簡(jiǎn)單地調(diào)用'mergeCells'方法并傳入合并信息參數(shù),告訴數(shù)據(jù)網(wǎng)格如何合并單元格。在合并的單元格中,除了第一個(gè)單元格以外,其他的單元格在合并后會(huì)被隱藏。

    數(shù)據(jù)網(wǎng)格中的列運(yùn)算

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

    <table id="tt" title="Merge Cells" style="width:550px;height:250px"
    url="data/datagrid_data.json"
    singleSelect="true" iconCls="icon-save" rownumbers="true"
    idField="itemid" pagination="true">
    <thead frozen="true">
    <tr>
    <th field="productid" width="80" formatter="formatProduct">Product ID</th>
    <th field="itemid" width="100">Item ID</th>
    </tr>
    </thead>
    <thead>
    <tr>
    <th colspan="2">Price</th>
    <th rowspan="2" field="attr1" width="150">Attribute</th>
    <th rowspan="2" field="status" width="60" align="center">Stauts</th>
    </tr>
    <tr>
    <th field="listprice" width="80" align="right">List Price</th>
    <th field="unitcost" width="80" align="right">Unit Cost</th>
    </tr>
    </thead>
    </table>

    合并單元格

    當(dāng)數(shù)據(jù)加載時(shí),我們?cè)跀?shù)據(jù)網(wǎng)格中合并單元格,因此在onLoadSuccess回調(diào)函數(shù)中放置下面的代碼。

    $('#tt').datagrid({
    onLoadSuccess:function(){
    var merges = [{
    index:2,
    rowspan:2
    },{
    index:5,
    rowspan:2
    },{
    index:7,
    rowspan:2
    }];
    for(var i=0; i &lt;merges.length; i++)
    $('#tt').datagrid('mergeCells',{
    index:merges[i].index,
    field:'productid',
    rowspan:merges[i].rowspan
    });
    }
    });

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

    購(gòu)買jQuery EasyUI最新正版授權(quán)!詳情請(qǐng)"咨詢?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); })();