更改Gridview组行背景颜色

时间:2014-06-12 11:44:59

标签: c# asp.net gridview

我正在开发一个asp.net应用程序。我有一个gridview,我根据订单号对结果进行分组:

我正在使用此代码:

void GroupGridView(GridViewRowCollection gvrc, int startIndex, int total)
    {
        if (total == 0) return;
        int i, count = 1;
        ArrayList lst = new ArrayList();
        lst.Add(gvrc[0]);
        var ctrl = gvrc[0].Cells[startIndex];

        for (i = 1; i < gvrc.Count; i++)
        {
            TableCell nextCell = gvrc[i].Cells[startIndex];
            Label lblNextOrderID = nextCell.FindControl("lblOrderID") as Label;
            Label lblOrderID = ctrl.FindControl("lblOrderID") as Label;
            if (lblOrderID.Text == lblNextOrderID.Text)
            {
                count++;
                nextCell.Visible = false;
                lst.Add(gvrc[i]);
            }
            else
            {
                if (count > 1)
                {
                    ctrl.RowSpan = count;
                    ctrl.VerticalAlign = VerticalAlign.Middle;
                    GroupGridView(new GridViewRowCollection(lst), startIndex + 1, total - 1);
                }

                count = 1;
                lst.Clear();
                ctrl = gvrc[i].Cells[startIndex];
                lst.Add(gvrc[i]);
            }
        }
        if (count > 1)
        {
            ctrl.RowSpan = count;
            GroupGridView(new GridViewRowCollection(lst), startIndex + 1, total - 1);
        }
        count = 1;
        lst.Clear();
    }

并将其称为:

  gvOrderHistory.DataSource = gridDataSource;
                gvOrderHistory.DataBind();
                GroupGridView(gvOrderHistory.Rows, 0, 1);

我正在关注此link。现在我希望备用组的颜色应该不同(不是备用行)。一组应该是绿色的。然后下一组白色,然后第三组再次绿色,然后是白色,依此类推。怎么做?

3 个答案:

答案 0 :(得分:1)

您可以向gridview添加一列并为不同的组提供不同的数字,然后在网格的RowDataBound事件处理程序中,您可以根据列号更改行的颜色。

您可以设置行的颜色,如:
   e.Row.BackColor = System.Drawing.Color.LightBlue;

答案 1 :(得分:0)

如果我正确阅读你的代码,你不能只引用你的ctrl变量并使用attributes属性吗?例如:

ctrl.Attributes.Add("class", "classname");

我不确定你试图将这个变量应用到哪个变量,但这也适用于你的nextCell TableCell对象..

HTH

答案 2 :(得分:0)

首先在你的aspx表单中添加一个css类

<style>
    .green { background-color: #00ff21; }
</style>

然后添加额外代码,如下所示

        ....
   ==>  int x = 0;
        for (i = 1; i < gvrc.Count; i++)
        {

   ==>      if(x % 2 == 0) gvrc[i].CssClass = "green";
   ==>      x++;

            TableCell nextCell = gvrc[i].Cells[startIndex];
            if (ctrl.Text == nextCell.Text)
            {

             ....