给GridView控件增加光棒效果时,可以在哪些事件上编写
展开全部
我 一般是用RowDataBound 事件
其他事件能不能实现 还没试过
//光棒效果
protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//客户端效果事件
//添加 鼠标移入行内 显示的样式
e.Row.Attributes.Add("onmouseover", "javascript:this.style.backgroundColor='#fffccc';");
//鼠标移出行 显示的样式
e.Row.Attributes.Add("onmouseout", "javascript:this.style.backgroundColor='#ffffff';");
}
}
希望对你有所帮助
其他事件能不能实现 还没试过
//光棒效果
protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//客户端效果事件
//添加 鼠标移入行内 显示的样式
e.Row.Attributes.Add("onmouseover", "javascript:this.style.backgroundColor='#fffccc';");
//鼠标移出行 显示的样式
e.Row.Attributes.Add("onmouseout", "javascript:this.style.backgroundColor='#ffffff';");
}
}
希望对你有所帮助
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询