View previous topic :: View next topic |
Author |
Message |
rajaryan544 -
Joined: 23 Jan 2009 Posts: 2
|
Posted: Fri Jan 23, 2009 6:59 am Post subject: How to show the data grids view in a tooltip? |
|
|
Hi,
I would like to show a tooltip when the user move the mouse over the first column of my gridview.
The tooltip should be bound to a field of the gridview's datasource that correspond to the row being hovered.
How can I do that ?
Thanks,
Raj _________________ Wireless Application Development | .Net Development |
|
Back to top |
|
|
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Sun Feb 08, 2009 4:48 pm Post subject: Re: How to show the data grids view in a tooltip? |
|
|
rajaryan544,
Standard HTML can help you do that:
Code: |
<TABLE><TR><TD><SPAN TITLE="Tooltip">Here is cell</SPAN></TD></TR></TABLE>
|
A more compact version would be:
Code: |
<TABLE><TR><TD TITLE="Tooltip">Here is cell</TD></TR></TABLE>
|
_________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
|
rajaryan544 -
Joined: 23 Jan 2009 Posts: 2
|
|
Back to top |
|
|
|