在这个事件里面处理。
protected void ASPxGridView1_HtmlRowPrepared(object sender, DevExpress.Web.ASPxGridView.ASPxGridViewTableRowEventArgs e)
{
}
这样应该可以。
1)注册GridView_RowDataBound(object sender, GridViewRowEventArgs e) 事件,代码如下:
if (时间3天到期)
{
e.Row.ItemStyle.CssClass="test";
}
3)设置样式
<style>
.test{background-color:red;}
</style>
楼上正解:绑定数据时,判断是否3天到期数据,是的话就改变css