zoukankan      html  css  js  c++  java
  • GridView 点滴

    绑定数据时。在后台给GridView添加事件

     protected void grd_RowDataBound(object sender, GridViewRowEventArgs e)

    {

          //当前行是数据行 排除头和尾
                    if (e.Row.RowType == DataControlRowType.DataRow)
                    {

                      //给第一列的每个单元格绑定单击事件
                        e.Row.Cells[0].Attributes.Add("onclick", "selectx(this)");//调用页面javascript

                       //e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#ffcc33'");
                        //e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c;");

                  

    //鼠标移动到每项时颜色交替效果
    e.Row.Attributes.Add("OnMouseOut", "this.style.backgroundColor='White';this.style.color='#003399'");
    e.Row.Attributes.Add("OnMouseOver", "this.style.backgroundColor='#6699FF';this.style.color='#8C4510'");
     
    //单击/双击 事件
    e.Row.Attributes.Add("OnDblClick", "DbClickEvent('" + e.Row.Cells[1].Text + "')");
     
    //设置悬浮鼠标指针形状为"小手"
    e.Row.Attributes["style"] = "Cursor:hand";
     
     e.Row.Attributes.Add("onmouseover", "if(this!=prev){c=this.style.backgroundColor;this.style.backgroundColor='#ffcc33'}");//当鼠标停留时更改背景色
                        e.Row.Attributes.Add("onmouseout", "if(this!=prev){this.style.backgroundColor=c}");//当鼠标移开时还原背景色
                        e.Row.Attributes["style"] = "Cursor:pointer";//设置悬浮鼠标指针形状为"小手"

                 }

    }

  • 相关阅读:
    如何Android Apk反编译得到Java源代码
    安卓反编译揭秘!!
    Android Apk反编译得到Java源代码
    玩手游虽易保安全不易,打造手游App定制加密方案
    LR学习笔记2-LoadRunner目录分析
    LR学习笔记1-性能测试常见用语
    [MySql视图的使用]
    SQL实训
    Mysql_删除主键
    [SQL提数]函数的灵活使用
  • 原文地址:https://www.cnblogs.com/nsky/p/3246217.html
Copyright © 2011-2022 走看看