Jul 14 2005

Add JavaScript Functionality to GridView

Category: ASP.NET 2.0 - GeneralBil@l @ 19:58

If you want to change the Cursor when the mouse is over the GridView, follow the simple steps below:

protected void RowCreated (object sender, GridViewRowEventArgs e)
{
    e.Row.Attributes.Add("onMouseOver", "this.style.cursor='n-resize'");
}


Hope that helps,

Regards

Tags:

Comments are closed