我必须根据单元格的值格式化(背景颜色、前景色、字体样式)radgrid 的单元格。
例如,如果值为负,则将该单元格的前景色设置为红色。
谁能告诉我这是如何实现的?
我必须根据单元格的值格式化(背景颜色、前景色、字体样式)radgrid 的单元格。
例如,如果值为负,则将该单元格的前景色设置为红色。
谁能告诉我这是如何实现的?
protected void grdName_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridDataItem)
{
GridDataItem item = (GridDataItem)e.Item;
if (Convert.ToInt32(((DataRowView)item.DataItem)["Column"]) < value)
{
TableCell cell = item["Column"];
cell.BackColor = Color.PeachPuff;
}
}
}
将行 onItemDataBound="Data_OnitemDataBound" 添加到您的 aspx 页面中的 radGrid 声明中。
然后将其添加到您的代码后面。Cells[] 中的数字是您要修改或验证的列的索引。
protected void Data_OnItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridDataItem)
{
GridDataItem item = (GridDataItem)e.Item;
if (Convert.ToDecimal(item.Cells[3].Text) < 0)
{
item.Cells[3].ForeColor = System.Drawing.Color.Red;
}
}
}
下面的代码可用于 RadGrid 中的所有单元格。
protected void RadGrid_ItemDataBound(object sender, GridItemEventArgs e)
{
foreach (GridDataItem dataItem in RadGridProduct.MasterTableView.Items)
{
int cellCount = dataItem.Cells.Count;
foreach (GridTableCell item in dataItem.Cells)
{
if (item.Text == null ||Convert.ToInt32(item.Text) < 0 )
item.BackColor = System.Drawing.Color.Brown;
}
}
}