zoukankan      html  css  js  c++  java
  • gridView RowDataBound事件 鼠标经过行颜色变化及根据字段值显示指定内容

     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;
                    }
                }
            }

  • 相关阅读:
    服务器学习
    第七章节 排序
    第六章节 优先队列/堆
    用cmd运行java时的问题
    转载一下如何联系口语
    在翻译群里看到的一个句子的翻译
    Android EditText的设置(转)
    荐 android 如何打包自定义控件(转)
    Android 自定义 SpinnerButton(转)
    Android PopupWindow的使用技巧(转)
  • 原文地址:https://www.cnblogs.com/lichengcai/p/4359658.html
Copyright © 2011-2022 走看看