zoukankan      html  css  js  c++  java
  • GridView长字段的显示

      /// <summary>
            /// Cut To Long String Of GridView
            /// </summary>
            /// <param name="e">RowDataBound e</param>
            /// <param name="cellIndex">Offset Of Column</param>
            /// <param name="maxStrLength">Max Length Of Reander</param>
            public  static void OmitGridInfo(System.Web.UI.WebControls.GridViewRowEventArgs e, int cellIndex, int maxStrLength)
            {
                if (e.Row.RowIndex == -1) return;
          
                    string CellText = e.Row.Cells[cellIndex].Text.Trim();

                    if (CellText.Length > maxStrLength)
                    {
                        e.Row.Cells[cellIndex].Text = CellText.Substring(0, maxStrLength - 1) + " <strong style='Color:blue'> ... </strong>";

                        e.Row.Cells[cellIndex].ToolTip = CellText;
                    }
            }

    调用方法:

      protected void GridViewAll_RowDataBound(object sender, GridViewRowEventArgs e)
            {
                if (e.Row.RowType == DataControlRowType.DataRow)
                {
                    //当鼠标停留时更改背景色
                    e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#B8CFEE'");
                    //当鼠标移开时还原背景色
                    e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
                }
                 OmitGridInfo(e, 8, 6);
            }

  • 相关阅读:
    Linux- 关于windows和Linux和Mac的换行符
    HIVE- 大数据运维之hive管理
    MySQL- SQL UNION 和 UNION ALL 操作符
    【loj3044】【zjoi2019】Minimax
    【loj3043】【zjoi2019】线段树
    【uoj336】【清华集训2017】无限之环
    【cf contest 1119 F】Niyaz and Small Degrees
    【学习笔记 边分树】【uoj400】【CTSC2018】暴力写挂
    【纪中集训2019.3.25】礼物
    【纪中集训2019.3.25】芬威克树
  • 原文地址:https://www.cnblogs.com/KingStar/p/1608532.html
Copyright © 2011-2022 走看看