码迷,mamicode.com
首页 > Web开发 > 详细

aspxGridview 根据单元格值得不同,设置单元格字体的颜色(设置和读取值)

时间:2020-01-09 20:30:12      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:col   send   object   substring   ble   creat   create   error   created   

protected void ASPxGridView1_HtmlRowCreated(object sender,DevExpress.Web.ASPxGridView.ASPxGridViewTableRowEventArgs e)
        {
            if (e.RowType != DevExpress.Web.ASPxGridView.GridViewRowType.Data) return;

            string errorPercent = e.GetValue("ErrorPercent").ToString();
            errorPercent = errorPercent.Substring(0, errorPercent.Length - 1);
            float errorPercentInt = float.Parse(errorPercent);
            if (errorPercentInt >= 3 || errorPercentInt<=-3)
            {
                e.Row.Cells[11].Style.Add("color", "Red");
            }
        }

aspxGridview 根据单元格值得不同,设置单元格字体的颜色(设置和读取值)

标签:col   send   object   substring   ble   creat   create   error   created   

原文地址:https://www.cnblogs.com/ljs-13/p/12173208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!