首页 > 其他 > 详细

gridView RowDataBound事件 鼠标经过行颜色变化及根据字段值显示指定内容

时间:2015-03-23 15:20:51      阅读:257      评论:0      收藏:0      [点我收藏+]

 protected void gvBarInfo_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)//判定当前的行是否属于datarow类型的行
            {
                //当鼠标放上去的时候 先保存当前行的背景颜色 并给附一颜色
                e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor=‘#7f9edb‘,this.style.fontWeight=‘‘;");
                //当鼠标离开的时候 将背景颜色还原的以前的颜色
                e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor,this.style.fontWeight=‘‘;");

                //根据字段值显示指定内容
                switch (e.Row.Cells[3].Text.ToString())
                {
                    case "1":
                        e.Row.Cells[3].Text = "道闸";
                        break;
                    case "2":
                        e.Row.Cells[3].Text = "入口屏";
                        break;
                    case "3":
                        e.Row.Cells[3].Text = "摄像头";
                        break;
                    case "4":
                        e.Row.Cells[3].Text = "发布牌";
                        break;
                }
                //根据字段值显示指定内容
                switch (e.Row.Cells[7].Text.ToString())
                {
                    case "0":
                        e.Row.Cells[7].Text = "正常";
                        break;
                    case "1":
                        e.Row.Cells[7].Text = "异常";
                        break;
                    case "2":
                        e.Row.Cells[7].Text = "未知";
                        break;
                    default:
                        e.Row.Cells[7].Text = "未知";
                        break;
                }
            }
        }

gridView RowDataBound事件 鼠标经过行颜色变化及根据字段值显示指定内容

原文:http://www.cnblogs.com/lichengcai/p/4359658.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!