Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Gridview with mouse over.

Status
Not open for further replies.

dalec

Programmer
Jul 8, 2000
191
US
I'm working with a grid view that I would like to add a mouseover effect not for a tooltip but to show a picture on another place on the page. I started using a popupcontrolextender and got that to work, but, it only pops the panel near the mouse cursor, when I want to load a picture elsewhere on the form.

I feel like I've sccored the internet looking for something like this, that I could implement, but, it's whipping me.

Thanks in advance.
Just for some background here is the example I used:
 
use jquery and associated gui add-ons to accomplish this. chances are you won't use server controls to render the html. for more information check ok jquery's website.

Since this problem deals with the client browser so much, once you get the data to the client it's all css and js from there. so forum216 will probably provide the best assistance with presentation questions.

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
dalec

I have a gv with a small magnifying glass img in a column. As you pass over the glass a new window opens and displays information. As the cursor passes down the column the page contents change to reflect the current row due to the new windows page_load event contents. You could change it to use a popup extender I guess. Well anyway here's the code i'm using.

Code:
<ItemTemplate>
<a href="#" onmouseover="window.open('accsdetail.aspx?ID=<%# Eval("scac")%>&sid=<%# Eval("shipmentid")%>','g','width=400,height=400');return false;">
 <asp:Image ID="Image1" runat="server" ImageUrl="~/Images/magglass.jpg" />
</a>
</ItemTemplate>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top