c#-设置Telerik RadGrid的行颜色
作者:互联网
我正在使用RadGrid来显示数据库中的数据.如果在状态列中该行显示为“已拒绝”,我想将RadGrid中的行颜色更改为红色.如果状态为NULL,则该行将保持显示为白色.我已经尝试过此代码,但该行仍未将颜色更改为红色.
try
{
if (dataBoundItem["status"].Text == "REJECTED")
{
TableCell cell = (TableCell)dataBoundItem["status"];
cell.BackColor = System.Drawing.Color.Red;
dataBoundItem.BackColor = System.Drawing.Color.Red;
if (e.Item is GridDataItem)
{
GridDataItem dataBoundItem1 = e.Item as GridDataItem;
if (dataBoundItem1["Status"].Text != null)
{
cell.BackColor = System.Drawing.Color.Red;
dataBoundItem1.BackColor = Color.Red;
dataBoundItem1["status"].ForeColor = Color.Red;
dataBoundItem1["status"].Font.Bold = true;
}
}
}
}
catch
{ }
解决方法:
尝试这样的事情:
using System.Drawing;
protected void RadGrid1_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
if (e.Item is GridDataItem)
{
TableCell celltoVerify1 = dataBoundItem["status"];
GridDataItem dataBoundItem = e.Item as GridDataItem;
if (celltoVerify1.Text== "REJECTED")
{
celltoVerify1.ForeColor = Color.Red;/// Only Change Cell Color
dataBoundItem.ForeColor = Color.Yellow; /// Change the row Color
//celltoVerify1.Font.Bold = true;
//celltoVerify1.BackColor = Color.Yellow;
}
}
}
请让我知道这对你有没有用.
标签:telerik,radgrid,c 来源: https://codeday.me/bug/20191029/1959017.html