KIẾN THỨC LẬP TRÌNH
...
Về chúng tôi
|
|
Thay đổi màu sắc các dòng trên GridView khi di chuột qua
Chúng ta phải đặt javascript trong event RowDataBound như sau:
protected void grid_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes.Add("onmouseover", "this.originalstyle=this.style.backgroundColor;this.style.backgroundColor='#D3EDBA'"); e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=this.originalstyle;"); } }
Chúc các bạn thành công!
BÀI VIẾT LIÊN QUAN
|