zoukankan      html  css  js  c++  java
  • easyUI单元格合并自定义封装

     mergeGridColCells($(this),"AdminType");

    function mergeGridColCells(grid,rowFildName)

    {   

         var rows=grid.datagrid('getRows' );    

        //alert(rows.length);       

    //alert(rows[1][rowFildName]);     

       var startIndex=0;       

    var endIndex=0;     

       if(rows.length< 1)   

        {            

      return;    

       }      

    $.each(rows, function(i,row){     

             if(row[rowFildName]==rows[startIndex][rowFildName])     

            {              

         endIndex=i;         

        }              else         

        {              

         grid.datagrid( 'mergeCells',{                      

       index: startIndex,              

               field: rowFildName,   

                          rowspan: endIndex -startIndex+1      

                 });              

         startIndex=i;       

                endIndex=i;    

             }

          });  

    grid.datagrid( 'mergeCells',{         

              index: startIndex,         

              field: rowFildName,        

               rowspan: endIndex -startIndex+1     

      });

    }

    *参数说明

    grid:        easyUI的datagrid对象
    rowFildName: 和并列的field属性值
  • 相关阅读:
    poj 2262 筛法求素数(巧妙利用数组下标!)
    BestCoder Round #65 (ZYB's Premutation)
    BestCoder Round #65 (ZYB's Game)
    BestCoder Round #65 (ZYB's Biology)
    筛法求素数
    常见OJ提交结果对照表
    CSS3伸缩盒Flexible Box
    移动开发屏幕适配分析
    用PHP抓取页面并分析
    安装最新版本的PHPUnit后,不能使用
  • 原文地址:https://www.cnblogs.com/yinchuan/p/5344110.html
Copyright © 2011-2022 走看看