gpt4 book ai didi

关于中gridview 字符串截取的方法

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章关于中gridview 字符串截取的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

首先在前台设置样式 。

复制代码代码如下:

<style  type="text/css">  
 .listover150  
{  
width:150px;  
text-align:left;  
overflow:hidden;  
text-overflow:ellipsis;//超长设置省略号  
white-space:nowrap;  
}  
</style>  

  。

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

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

  。

复制代码代码如下:

 //列表加载处理  
   protected void gv_showReport_RowDataBound(object sender, GridViewRowEventArgs e)  
   {  

       if (e.Row.RowType == DataControlRowType.DataRow)  
       {  

           //当鼠标移开时还原背景色  
           e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");  
           e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#F4FBFF'");  
           e.Row.Attributes.Add("onclick", "this.style.backgroundColor='#e2eaf1'");  
       }  
       if (e.Row.RowType == DataControlRowType.Header)  
       {  
           e.Row.Attributes.Add("style", "background-image:url('../images/grid3-hrow.gif')");  
       }  
       if (e.Row.RowType == DataControlRowType.DataRow)  
       {  
           //设置申请原因 字符串显示长度  
           string strDISC = e.Row.Cells[4].Text.Trim();  
           e.Row.Cells[4].Text = "<div class=/"listover150/">" + strDISC + "</div>";  
           e.Row.Cells[4].ToolTip = strDISC;//鼠标放上去显示所有  

           //设置审批备注字符串 截取长度  
           string str = e.Row.Cells[7].Text.Trim();  
           e.Row.Cells[7].Text = "<div class=/"listover150/">" + str + "</div>";  
           e.Row.Cells[7].ToolTip = str;  

       }  
   }  
 

最后此篇关于关于中gridview 字符串截取的方法的文章就讲到这里了,如果你想了解更多关于关于中gridview 字符串截取的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com