在Web DataGrid中当鼠标移到某行与离开时行的颜色发生改变(结合javascript)
2005-04-28 16:59:28 来源:WEB开发网在head中添加javascript 代码如下:
<script lang=Javascript>
function sel(i) // 鼠标移上去后执行
{
eval(i+".style.background='#CCCC66'"); // 更改行的颜色
eval(i+".style.cursor='hand'"); // 鼠标移上去后变为手形
}
function unsel(i) // 鼠标离开后执行
{
eval(i+".style.background=''");
}
function clicktr(i)
{
eval(i+".style.background=''");
window.open("Edit.aspx?param="+i,"修改","height=490,width=710,resizable=no,scrollbars=no,status=no,toolbar=no,
menubar=no,location=no,left=50,top=50");
}
</script>
在DataGrid的 ItemDataBound (当数据绑定时发生)事件中:
PRivate void DataGrid1_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if(e.Item.ItemType != ListItemType.Header)
{
string ID = e.Item.Cells[0].Text; // 这里的第一列为数据绑定中的ID值(为修改页中传递参数方便,若多参数,也可按需要增加!)
e.Item.Attributes.Add("id",ID);
e.Item.Attributes.Add("onmouSEOver","sel(" + ID+ ")");
e.Item.Attributes.Add("onmouseout", "unsel(" + ID+ ")");
e.Item.Attributes.Add("onclick", "clicktr(" + ID+")");
}
}
//**************************** 结束 **********************************************//
不过以上做法存在不便之处,如果在DataGrid中加个模板列,用于给用户提供选择操作(比如删除选中),
此时用上述方法就会造成每次在选择CheckBox的时候也弹出新窗口(激发了onclick事件)
比较差的解决办法:
将原先的基于行的 Attributes 改为基于列.除掉模板列外,所有列都添加属性.
比如模板列在第6列,可以这样修改 cs 文件
private void DataGrid1_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if(e.Item.ItemType != ListItemType.Header)
{
string bm = e.Item.Cells[0].Text;
for(int i=0;i<5;i++)
{
e.Item.Cells[i].Attributes.Add("id","a"+i.ToString()+bm);
e.Item.Cells[i].Attributes.Add("onmouseover","sel(" +i.ToString()+","+ bm + ")");
e.Item.Cells[i].Attributes.Add("onmouseout", "unsel(" +i.ToString()+","+ bm + ")");
e.Item.Cells[i].Attributes.Add("onclick", "clicktr(" + bm +")");
}
}
}
在 javascript 代码中:
function sel(i,ID)
{
for(var j=0;j<5;j++)
{ eval("a"+j.toString()+ID+".style.background='#CCCC66'"); eval("a"+j.toString()+ID+".style.cursor='hand'");
}
}
function unsel(i,ID)
{
for(var j=0;j<5;j++)
{ eval("a"+j.toString()+ID+".style.background=''");
}
}
function clicktr(i)
{
for(var j=0;j<5;j++)
{
eval("a"+j.toString()+i+".style.background=''");
window.open("Edit.aspx?param="+i,"修改","height=490,width=710,resizable=no,scrollbars=no,status=no,toolbar=no,
menubar=no,location=no,left=50,top=50");
}
}
- ››鼠标右键新建只显示文件夹别的不见
- ››Web服务器和应用服务器的区别
- ››DataGrid中CheckBox绑定bool属性来进行选中判断
- ››鼠标点击搜索输入框内的value值自动没有
- ››web安全之信息刺探防范1
- ››webqq 最新加密算法
- ››webdriver 数据库验证方法
- ››鼠标来画矩形
- ››WebSphere Application Server 7.0 XML Feature P...
- ››Web2.0网络时代基于社会影响力的声望值
- ››Web服务器搭建:配置Linux+Apache+Mysql+PHP(或Pe...
- ››WebLogic调整Java虚拟机性能优化参数
更多精彩
赞助商链接