合并GridView中某列相同信息的行

第一种: 

出处:http://hi.baidu.com/flc_709/blog/item/20976454869fd957574e0020.html

/// <summary>

/// 合并GridView中某列相同信息的行(单元格)  

/// </summary>

/// <param name="GridView1">GridView</param>

/// <param name="cellNum">第几列</param>

       public static void GroupRows(GridView GridView1, int cellNum)
       {

           int i = 0, rowSpanNum = 1;

while (i < GridView1.Rows.Count - 1)
           {
               GridViewRow gvr = GridView1.Rows[i];

               for (++i; i < GridView1.Rows.Count; i++)
               {
                   GridViewRow gvrNext = GridView1.Rows[i];

                   if (gvr.Cells[cellNum].Text == gvrNext.Cells[cellNum].Text)
                   {
                       gvrNext.Cells[cellNum].Visible = false;
                       rowSpanNum++;
                   }

                   else
                   {
                       gvr.Cells[cellNum].RowSpan = rowSpanNum;
                       rowSpanNum = 1;
                       break;
                   }

                   if (i == GridView1.Rows.Count - 1)
                   {
                       gvr.Cells[cellNum].RowSpan = rowSpanNum;
                   }
               }
           }
       }

 

//正常换行
           GVbkdj.Attributes.Add("style", "word-break:keep-all;word-wrap:normal");
          //下面这行是自动换行       
         //GVbkdj.Attributes.Add("style", "word-break:break-all;word-wrap:break-word");

 

 

 

第二种方式:递归方式做成一个控件

 

 

public class GroupedGridView : GridView
    {  
        public int GroupedDepth
        {
            get
            {
                object val = this.ViewState["GroupedDepth"];
                if (null == val)
                {
                    return 0;
                }

                return (int)val;
            }
            set
            {
                if (value < 0)
                    throw new ArgumentOutOfRangeException("value", "value must be greater than or equal to zero");

                this.ViewState["GroupedDepth"] = value;
            }
        }

        protected override void OnDataBound(EventArgs e)
        {
            base.OnDataBound(e);

            this.SpanCellsRecursive(0, 0, this.Rows.Count);
        }

        private void SpanCellsRecursive(int columnIndex, int startRowIndex, int endRowIndex)
        {
            if (columnIndex >= this.GroupedDepth || columnIndex >= this.Columns.Count)
                return;

            TableCell groupStartCell = null;
            int groupStartRowIndex = startRowIndex;

            for (int i = startRowIndex; i < endRowIndex; i++)
            {
                TableCell currentCell = this.Rows[i].Cells[columnIndex];

                bool isNewGroup = (null == groupStartCell) || (0 != String.CompareOrdinal(currentCell.Text, groupStartCell.Text));

                if (isNewGroup)
                {
                    if (null != groupStartCell)
                    {
                        SpanCellsRecursive(columnIndex + 1, groupStartRowIndex, i);
                    }

                    groupStartCell = currentCell;
                    groupStartCell.RowSpan = 1;
                    groupStartRowIndex = i;
                }
                else
                {
                    currentCell.Visible = false;
                    groupStartCell.RowSpan += 1;
                }
            }

            SpanCellsRecursive(columnIndex + 1, groupStartRowIndex, endRowIndex);
        }
    }

 

 

 

 

 

 

 

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值