zoukankan      html  css  js  c++  java
  • easyui rowspan

    第一种写法

    columns: [
    [
    { field: 'depName', title: '部门', rowspan: 2, '100px', align: 'center' },
    { field: 'busName', title: '业务', rowspan: 2, '100px', align: 'center' },
    { field: 'vendorname', title: '运营商', rowspan: 2, '100px', align: 'center' },
    { field: '1', title: '<%=NowToday%>日当天发送量', colspan: 3, '100px', align: 'center' },
    { field: '1', title: '截止<%=NowToday%>日当天发送量', colspan: 3, '100px', align: 'center' }
    ],
    [
    { field: 'LastTodaySend', title: '<%=LastMonth%>月', '100px', align: 'center' },
    { field: 'NowTodaySend', title: '<%=NowMonth%>月', '100px', align: 'center' },
    { field: 'ratio1', title: '环比', '100px', align: 'center', formatter: percentFoemat },
    { field: 'LastEndSend', title: '<%=LastMonth%>月', '100px', align: 'center' },
    { field: 'NowEndSend', title: '<%=NowMonth%>月', '100px', align: 'center' },
    { field: 'ratio2', title: '环比', '100px', align: 'center',formatter:percentFoemat}
    ]
    ]
    });

    第2种写法:

    <%-- <table id="dg" class="easyui-datagrid" style="100%;height:auto;float:left" title="">
    <thead>
    <tr>
    <th rowspan="2" field="depName" width="100px;" data-options="align:'center'">部门</th>
    <th rowspan="2" field="busName" width="100px;" data-options="align:'center'">业务</th>
    <th rowspan="2" field="vendorname" width="100px;" data-options="align:'center'">运营商</th>
    <th colspan="3" field="1" data-options="align:'center'"><%=NowToday%>日当天发送量</th>
    <th colspan="3" field="1" data-options="align:'center'">截止<%=NowToday%>日当天发送量</th>
    </tr>
    <tr>
    <th field="LastTodaySend" width="100px;" data-options="align:'right'"><%=LastMonth%>月</th>
    <th field="NowTodaySend" width="100px;" data-options="align:'right'"><%=NowMonth%>月</th>
    <th field="ratio1" width="100px;" data-options="align:'right'" formatter="percentFoemat">环比</th>
    <th field="LastEndSend" width="100px;" data-options="align:'right'"><%=LastMonth%>月</th>
    <th field="NowEndSend" width="100px;" data-options="align:'right'"><%=NowMonth%>月</th>
    <th field="ratio2" width="100px;" data-options="align:'right'" formatter="percentFoemat">环比</th>
    </tr>
    </thead>
    </table>--%>

    效果图:

     

  • 相关阅读:
    下拉菜单得经典写法html5
    QQ空间开放平台开发教程-SDK和API的使用
    PHP 性能分析第一篇: Xhprof & Xhgui 介绍
    Linuxshell脚本之if条件判断
    XHProf的安装和使用(PHP性能测试神器)
    hibernate中validate的使用(转)
    having和where的区别
    关于项目中参数传递的问题
    Service中事务不能回滚的解决方式(转)
    ajaxsearch要点1
  • 原文地址:https://www.cnblogs.com/lacey/p/7488830.html
Copyright © 2011-2022 走看看