Link to home
Start Free TrialLog in
Avatar of jamesdean666
jamesdean666

asked on

C#.NET GridView - Command Field (Edit) onmouseover

I would like to display some Text when a user hovers over a CommandField (Edit) in a GridView in my application.  Any ideas?
ASKER CERTIFIED SOLUTION
Avatar of saragani
saragani

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jamesdean666
jamesdean666

ASKER

Works like a charm.. thanks.  I actually had multiple rows, so I modified the code a bit:

for (int i = 0; i < GridView2.Rows.Count; i++)
{
    this.GridView2.Rows[i].ToolTip = "This is hover over text";
}

Thanks.
See my comment below this solution.