zoukankan      html  css  js  c++  java
  • gridview 截取字符串

    在Gridview中,如果你的某一列字符串的长度过长,不做处理的话.那么将显示的奇丑无比,

    可以采取设置样式,将其显示为定长,可以在点击查看的时候,在另一个页面对其进行显示

    首先在前台设置样式

    [c-sharp] view plaincopy
     
    1. <style  type="text/css">  
    2.  .listover150  
    3. {  
    4. 150px;  
    5. text-align:left;  
    6. overflow:hidden;  
    7. text-overflow:ellipsis;//超长设置省略号  
    8. white-space:nowrap;  
    9. }  
    10. </style>  

    然后在后台GridView中的RowDataBind中进行设置

    ,附带几句可以改变鼠标移动的样式设置

    [c-sharp] view plaincopy
     
    1. //列表加载处理  
    2.    protected void gv_showReport_RowDataBound(object sender, GridViewRowEventArgs e)  
    3.    {  
    4.   
    5.        if (e.Row.RowType == DataControlRowType.DataRow)  
    6.        {  
    7.   
    8.            //当鼠标移开时还原背景色  
    9.            e.Row.Attributes.Add("onmouseout""this.style.backgroundColor=c");  
    10.            e.Row.Attributes.Add("onmouseover""c=this.style.backgroundColor;this.style.backgroundColor='#F4FBFF'");  
    11.            e.Row.Attributes.Add("onclick""this.style.backgroundColor='#e2eaf1'");  
    12.        }  
    13.        if (e.Row.RowType == DataControlRowType.Header)  
    14.        {  
    15.            e.Row.Attributes.Add("style""background-image:url('../images/grid3-hrow.gif')");  
    16.        }  
    17.        if (e.Row.RowType == DataControlRowType.DataRow)  
    18.        {  
    19.            //设置申请原因字符串显示长度  
    20.            string strDISC = e.Row.Cells[4].Text.Trim();  
    21.            e.Row.Cells[4].Text = "<div class=/"listover150/">" + strDISC + "</div>";  
    22.            e.Row.Cells[4].ToolTip = strDISC;//鼠标放上去显示所有  
    23.   
    24.            //设置审批备注字符串截取长度  
    25.            string str = e.Row.Cells[7].Text.Trim();  
    26.            e.Row.Cells[7].Text = "<div class=/"listover150/">" + str + "</div>";  
    27.            e.Row.Cells[7].ToolTip = str;  
    28.   
    29.   
    30.               
    31.        }  
    32.    }  
  • 相关阅读:
    P1509 找啊找啊找GF
    P1508 Likecloud-吃、吃、吃
    P1493 分梨子
    P1507 NASA的食物计划
    Java简单从文件读取和输出
    服务器和普通用户电脑的区别
    readUTF()和writeUTF()
    js中substring和substr的用法
    AfxMessageBox和MessageBox差别
    POJ 3691 &amp; HDU 2457 DNA repair (AC自己主动机,DP)
  • 原文地址:https://www.cnblogs.com/withoutaword/p/3149309.html
Copyright © 2011-2022 走看看