会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Nice感觉
海绵不断的吸收
博客园
首页
新随笔
联系
订阅
管理
方便的选中记录方法(交替项颜色变换):点击DataGrid的一条记录,则选中此记录。
点击记录则选中,并可交替颜色
protected
void
DataGrid_ItemDataBound(
object
sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
//
如果是数据项并且是交替项
if
(e.Item.ItemType
==
ListItemType.Item
||
e.Item.ItemType
==
ListItemType.AlternatingItem)
{
//
添加自定义属性,当鼠标移过来时设置该行的背景色为指定颜色,并保存原背景色
e.Item.Attributes.Add(
"
onmouseover
"
,
"
currentcolor=this.style.backgroundColor;this.style.backgroundColor='
"
+
IRFilter_variable.strColor_dgItemDataBound
+
"
'
"
);
//
添加自定义属性,当鼠标移走时还原该行的背景色
e.Item.Attributes.Add(
"
onmouseout
"
,
"
this.style.backgroundColor=currentcolor
"
);
}
}
posted on
2006-10-31 16:29
Gary.han
阅读(
363
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部