div使用jqueryui 源码 | gridview多个功能的源码
div使用jqueryui 源码 | gridview多个功能的源码
一、gridview 选中行 改变颜色,双击选中 改变颜色
protected void gv1_SelectedIndexChanged(object sender, EventArgs e) { //选中行更改背景色 e.Row.Attributes.Add("ondbclick", "c=this.style.backgroundColor;this.style.backgroundColor='#800000'"); gv1.SelectedRow.BackColor = System.Drawing.Color.Maroon; }