在Web DataGrid中當(dāng)鼠標(biāo)移到某行與離開時(shí)行的顏色發(fā)生改變(結(jié)合javascript)
發(fā)表時(shí)間:2024-06-04 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]在head中添加javascript 代碼如下:<script lang=javascript> function sel(i) // 鼠標(biāo)移上去后執(zhí)行 eval(i+".style.background='#CCCC66'"); // 更改行的...
在head中添加javascript 代碼如下:
<script lang=javascript>
function sel(i) // 鼠標(biāo)移上去后執(zhí)行
{
eval(i+".style.background='#CCCC66'"); // 更改行的顏色
eval(i+".style.cursor='hand'"); // 鼠標(biāo)移上去后變?yōu)槭中?br> }
function unsel(i) // 鼠標(biāo)離開后執(zhí)行
{
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 (當(dāng)數(shù)據(jù)綁定時(shí)發(fā)生)事件中:
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; // 這里的第一列為數(shù)據(jù)綁定中的ID值(為修改頁中傳遞參數(shù)方便,若多參數(shù),也可按需要增加!)
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+")");
}
}
//**************************** 結(jié)束 **********************************************//
不過以上做法存在不便之處,如果在DataGrid中加個(gè)模板列,用于給用戶提供選擇操作(比如刪除選中),
此時(shí)用上述方法就會造成每次在選擇CheckBox的時(shí)候也彈出新窗口(激發(fā)了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");
}
}