How to show GridView in tooptip in asp.net
Normally what happens, a single or more lines are shown as a tooltip. What I need is to sho开发者_如何学运维w a gridview as a tooltip. Actually in my project i need to show all the notes associated with a stock in a gridview.
Can anybody help me?
Thanks for sharing your valuable time.
As you are working on the web; why not use a dynamic DIV or the equivalent and have a JS function that loads it with the relevant content and moves it to where you want it upon the mouseover event of the control you want to display the tooltip for?
GridView in a tooltip? gringe
Why don't you use a Sql Data Reader to fetch the data, then set the server control's tool tip text to that?
精彩评论