在gridview 列表中,需要添加如下效果,如果經(jīng)過(guò)時(shí)變色,移開時(shí)還原成以前的顏色,行選中時(shí)通過(guò)加深色,從而知道選中了哪行,特別是列表數(shù)據(jù)比較多的時(shí)候,標(biāo)志很重要,同時(shí)觸發(fā)選中行事件,那么如何 行選中加顏色,同時(shí)也出發(fā)我們事件了?如果我們通入 e.Row.Attributes.Add("onclick", 綁定兩次,發(fā)現(xiàn)只能觸發(fā)其中的一個(gè),其實(shí)可以把另個(gè)放到一個(gè)里面
下面是具體的例子:
復(fù)制代碼 代碼如下:
protected void EditGridview_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType== DataControlRowType.DataRow)
{
//當(dāng)鼠標(biāo)放上去的時(shí)候 先保存當(dāng)前行的背景顏色 并給附一顏色
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='inactivecaptiontext',this.style.fontWeight='';this.style.cursor='hand';");
//當(dāng)鼠標(biāo)離開的時(shí)候 將背景顏色還原的以前的顏色
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor,this.style.fontWeight='';");
//當(dāng)鼠標(biāo)單擊時(shí),加深色標(biāo)志
e.Row.Attributes.Add("onclick", "setvalue();if(window.oldtr!=null){window.oldtr.runtimeStyle.cssText='';}this.runtimeStyle.cssText='background-color:#e6c5fc';window.oldtr=this");
}
}
js代碼:
復(fù)制代碼 代碼如下:
script type="text/javascript" >
function setvalue() {
alert('行單擊事件,同時(shí)變色');
}
/script>
您可能感興趣的文章:- GridView中點(diǎn)擊CheckBox選中一行來(lái)改變此行的顏色
- GridView選擇性導(dǎo)出Excel解決方案
- 如何將數(shù)據(jù)綁到gridview然后導(dǎo)成excel
- asp.net讀取excel中的數(shù)據(jù)并綁定在gridview
- GridView生成的HTML代碼示例對(duì)比
- gridview實(shí)現(xiàn)服務(wù)器端和客戶端全選的兩種方法分享
- gridview的buttonfield獲取該行的索引值(實(shí)例講解)
- Gridview自動(dòng)排序功能的實(shí)現(xiàn)
- 獲取Gridview中ButtonField的text屬性
- DevExpress實(shí)現(xiàn)GridView當(dāng)無(wú)數(shù)據(jù)行時(shí)提示消息