AJAX :: Create Have A Panel Open Only When Hovering Over A Hyperlink?
Feb 22, 2010
I want to do something like netflix, where when you hover over something like a hyperlink (netflix, is an image) a panel displays, when the mouse moves off of the control, the panel hides itself.Any suggestions on how to do this and with which control? The AnimationExtender will display the panel, but won't close the panel as I am limited to one Animation.
I am showing some information on mouse hovering on the links. I am doing this by making an AJAX call on mouse hover the the links and fetching the data from database.
Problem is that if I mouse hover several times on the same link it will make the AJAX call and hit the database in each time. But I want if it once fetch the data from the database for a specific link on second time mouse hover it should not hit the database again. For this I need to store the data in client side some where and reuse it(I think).
What is the best approach to handle this situation?
P.S: I am having more than 20 such links in the page.
I'm using the following span to open a page in a new window. What is INCREDIBLY odd is that it is exactly the same code from three different pages, but the first refuses to open in a new window. The only difference is that the first example resides within an Ajax Accordian Panel so I suspect that it might be an Ajax related issue.
I want to create an ajax panel (correct terminology?) in my webpage that updates just part of the page instead of updating the whole page.Can I do this while using ASP.net and Visual Basic.net? I do not use C#.If this is possible using VB.net, can someone point me to a few documents that will help me get started? On a 1 to 10 scale, I would rate my technical knowledge at only about 5 or 6.
The HyperLink under Panel within UpdatePanel is not clickable. When HyperLink is moved from sub panel to UpdatePanel, everything is good. Here is my code -
This code is not working. In IE, it doesn't do anything but in FF, it throws a error box with message that the "FF doesn't know how to open this address..."
I have a GridView with several columns. One of my columns is a TemplateField containing a HyperLink.
I want that hyperlink "clicked" if the user clicks anywhere in the respective row. If the user clicks in Column2 of Row1, I want the page to behave as if the user clicked on the link in Column1 of Row1.
I need to open a browser tag within a link that is given from me from an asp.net code behind.Normaly I would have a link and target="_blank", but the link that I need is dynamic, so i must have the behauvior of a _blank-link from code behind.
How can I open a XML file from the location mentioned in the web.config file using Hyperlink control?
I have an aspx page with hyperlink control and in code behind I do the following:
[Code]....
Web.config file looks like:
[Code]....
This code is not working. In IE, it doesn't do anything but in FF, it throws a error box with message that the "FF doesn't know how to open this address..."
I have a hyperlink being returned as a template field in a gridview, it all works except that I would like the link to open in a new window.See code...
I have a panel which is of a fixed size and in the panel I have a hyperlink. How can I make it so the user can click anywhere in the panel to activate the hyperlink click?
I have a main page which display the results when clicked on the search button. Those results are in the gridview. one of the column is a hyperlink. when clicked on the hyperlink, it will display the detail page in an iframe(iframe is in the main page below grid view) which is on the same page.
now i need to make changes to the main page, to display directly the detail page in an iframe when there is a single record. or the grid view when there are multiple recoreds so that user can choose which details they want tlp see when a search button is clicked.