Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to put a LinkButton INTO a tooltip using ASP.NET?

Tags:

c#

asp.net

When using the core ASP.NET 3.5 (w/ Ajax), is it possible to include a LinkButton in a tooltip?

Unfortunately, these tooltips are generated on-the-fly within a GridView to display custom data from each row. Tooltips are currently showing using jQuery.

So, I don't know how to add a LinkButton (for a "Modify" action) to call a method on code-behind.

Maybe I'm going the wrong way... Any suggestions?

Thank you!

like image 498
sgy Avatar asked Nov 14 '22 02:11

sgy


1 Answers

UPDATE : Seems like a Server side control Implementation : http://devarchive.net/advanced-tooltip-control-asp-net-ajax.aspx There is no direct way to do this. You can find some plugins in JQuery which helps to do this. Try the one @Andre Hühn provided. This one also looks good : http://jquery.bassistance.de/tooltip/demo/

like image 135
Anuraj Avatar answered Nov 17 '22 00:11

Anuraj