active questions tagged modalpopups - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T03:39:23Zhttp://stackoverflow.com/feeds/tag/modalpopupshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923210/click-in-modalpopup-iframe-changes-url-in-parent-window0Click in ModalPopup IFrame changes URL in Parent WindowUnicron2009-12-17T17:12:16Z2009-12-17T19:28:45Z
<p>Hi all,</p>
<p>I'm using Visual Studio 2008 and ASP.NET MVC 1.</p>
<p>I have a View where i open another View in a modal popup using fancybox. In this popup users can edit some data. It works great and the data is presented by the modalpopup, but when i click on the save button, the parent window changes to the modal popup content.</p>
<pre><code><script type="text/javascript">
$(document).ready(function() {
$("a#iframe").fancybox({
'hideOnContentClick': false,
'zoomSpeedIn': 300,
'zoomSpeedOut': 300,
'frameWidth': 640,
'callbackOnClose': function() { location.refresh(); }
});
});
</script>
</code></pre>
<p>and the link looks like this</p>
<pre><code><a href="/Client/Edit/idOfClient" id="iframe">Edit</a>
</code></pre>
<p>What can I do, that the response after clickin the save button remains in the modal popup.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/288867/how-to-code-a-javascript-modal-popup-to-replace-ajax0How to code a JavaScript modal popup (to replace Ajax)?Sunfish2008-11-14T00:22:46Z2009-11-19T21:57:29Z
<p>I need to replace our <a href="http://en.wikipedia.org/wiki/Ajax%5F%28programming%29" rel="nofollow">Ajax</a> Modal Popup controls with a JavaScript equivalent. We use this as a simple context sensitive help type popup. I did a quick browse but didn't see quite what I was looking for. I just need some text and a simple Close button/link, but I would like the page darkened below the popup, as it does with the Ajax modal control.</p>
<p>Can anyone suggest a nice JavaScript popup/help type solution that you've used?</p>
http://stackoverflow.com/questions/1719674/cocoa-pop-up-window-similar-to-ical1Cocoa Pop-up Window Similar to iCalMarkPowell2009-11-12T03:20:03Z2009-11-12T17:21:12Z
<p>I want to open an overlay window (pop up window) when a user selects a cell in my <code>NSTableView</code> similar to selecting an event in iCal. Selecting the event in iCal shows a Window to edit the event, but does so by smoothly animating the window open and adding an arrow pointing to the even in the underlying calendar. Does anyone know what is being used here? Is this a bunch of hidden/custom APIs or is this available for public use?</p>
http://stackoverflow.com/questions/1706663/alternative-to-richmodalpanel-for-internet-explorer-61Alternative to <rich:modalPanel> for Internet Explorer 6romaintaz2009-11-10T09:34:13Z2009-11-11T12:55:51Z
<p>Hello,</p>
<p>The pages of my web application are loaded really slowly on Internet Explorer 6, compared to Firefox : around 6s for IE6, 3s for Firefox.</p>
<p>The size of the pages are indeed a big problem in my application, but
I also know that the <code><rich:modalPanel></code> is really slow on IE6 (due to DOM manipulations).</p>
<p>As we use a lot ot them, I think that this component may be indeed one of the reasons of this slowness...</p>
<p>So, is there a JSF alternative to the <code><rich:modalPanel></code> component?</p>
<p>Or eventually, do you know a javascript / jQuery modal panel code that can be easily used for a custom component in JSF?</p>
<p>Technical informations:</p>
<p>JSF 1.2 (+ Facelets) and Richfaces 3.2.2</p>
http://stackoverflow.com/questions/1176849/javascript-image-gallery-not-working0Javascript image gallery not workingSeedorf2009-07-24T10:31:47Z2009-09-22T06:38:24Z
<p>I used a image gallery engine called prettyPhoto.js to a wordpress site that I was creating. However, for some strange reason the image gallery seems to have completely stopped working and I can't for the life of me find out how to rectify this problem (without explicitly going through the entire site and stripping out the <code>rel="prettyphoto"</code> tags embedded in all the image anchor links.</p>
<p>I am wondering if the javascript or the CSS is not being output to the browser properly, but taking a look at the "Net" panel in firebug, it seems to be loading these files without a problem. I tried having a look at the <code><a></code> link referencing the images to be opened, and they all had the required "prettyPhoto" attribute.</p>
<p>The page in question is <a href="http://instant-wine-cellar.co.uk/products/microcellar/" rel="nofollow">
<a href="http://instant-wine-cellar.co.uk/products/microcellar" rel="nofollow">http://instant-wine-cellar.co.uk/products/microcellar</a></a> and try clicking on any of the microcellar pictures.</p>
<p>Another is the "Watch Microcellar Video" link on the front page.</p>
<p>For those who do not know. This image gallery script, same with a lot of others, works by:<br/>
1. putting the prettyPhoto javascript file in your server.<br/>
2. putting the prettyPhoto css file in your server.<br/>
3. referencing the path to the above files into the head (or footer) of your html file.<br/>
4. triggering the process by putting some bespoke script into your HTML file to find the <code><a></code> tags in your file with a certain <code>rel</code> attribute and opening the link it references, into the prettyPhoto modal box.</p>
http://stackoverflow.com/questions/1442323/apples-gallery-overlay-lightbox1Apple's Gallery Overlay Lightboxphalacee2009-09-18T02:29:40Z2009-09-18T07:53:03Z
<p>I'm looking for something very, very close in functionality to the lightbox on
<a href="http://www.apple.com/macbookpro/overlays/redesigned.html#redesigned" rel="nofollow">Apple's MacBook Pro website</a> (the lightbox will open automatically). </p>
<p>I really need the thumbnail slider and the text-area. The layout can be different, as I have the skills to remodel it if need be, I just don't have the time to build it from scratch.</p>
<p>No preference of dependent libraries.</p>
http://stackoverflow.com/questions/1178633/modal-window-with-jquery-navigation-inside0Modal window with jquery navigation insideDanC2009-07-24T16:06:18Z2009-08-14T15:52:59Z
<p>I am trying to set up a sites navigation which extends over several levels. I have built one option for the client where the different levels open using jquery and want to now see how this looks within a modal window.</p>
<p>However,</p>
<p>I am using FancyBox <a href="http://fancybox.net/" rel="nofollow">FancyBox</a> which I have used to load the navigation from an ajax call. It displays fine until you click to access the next layer which causes the window to close.</p>
<p>Any ideas how I can keep the window open until the user reaches the end point?</p>
<p>Help much appreciated.</p>
<p>EDIT:</p>
<p>apple have a slightly similar thing going on on the following page but with photos,</p>
<p><a href="http://www.apple.com/imac/design.html" rel="nofollow">Apple</a></p>
<p>It all seems to be the same window not reloads like most modals.</p>
http://stackoverflow.com/questions/1147438/is-it-possible-to-build-an-addon-to-firefox-that-can-break-a-loop-of-alerts1Is it possible to build an addon to firefox that can break a loop of alerts?Itay Moav2009-07-18T12:32:21Z2009-07-20T19:10:03Z
<p>Several times I got into conditions my scripts threw alerts in high rates. While there is an alert modal window open, you can't do any other action in the browser. I am looking to develop an add-on that will enable me to kill or suspend the "thread" the alert modal window belongs to.<br />
In What direction should I look?</p>
http://stackoverflow.com/questions/1070235/jquery-modal-box-positioning0JQuery Modal Box PositioningMike2009-07-01T16:55:52Z2009-07-02T16:19:36Z
<p>Alright. I am using a Modal box pop up window to display business details of a dynamic table. This table is very long. Everything works right with the modal box, but if they are say scrolled to the bottom of the page, it always opens the Modal box at the very top of the page. So they would have to do a lot of scrolling back down this way.</p>
<p>I am currently using this code to center my modal box.</p>
<pre><code>function centerPopup(x){
//request data for centering
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var popupHeight = $("#popup" + x).height();
var popupWidth = $("#popup" + x).width();
//centering
$("#popup" + x).css({
"position": "absolute",
"top": windowHeight/2-popupHeight/2,
"left": windowWidth/2-popupWidth/4
});
//only need force for IE6
$('#backgroundPopup').css({
"height": windowHeight
});
}
</code></pre>
<p>I don't know if there is something in this code that is effecting it. A work around would be to have to scroll down to where they were previously but I couldn't find much documentation on .position.</p>
http://stackoverflow.com/questions/158851/what-are-some-good-pop-up-dialog-boxes-for-ruby-on-rails7What are some good pop-up dialog boxes for Ruby on RailsTilendor2008-10-01T17:47:47Z2009-07-02T02:38:08Z
<p>I want to use modal pop-up windows in our web app in Ruby on Rails. Note that I don't want to create a new browser window, but a sub-window inside the existing webpage. We've tried things like TinyBox, but there are issues with returning error information from inside the controller. Any good method or tool that works well in ruby?</p>
http://stackoverflow.com/questions/1063471/modal-window-when-clicking-link-button0Modal Window When Clicking Link Buttonhatem2009-06-30T12:47:16Z2009-06-30T13:10:45Z
<p>Hi all,</p>
<p>I have a LinkButton inside a data list. When I click on this LinkButton, I want to open a modal widow and load another html page in it.</p>
<p>Can you guys please help me with this?</p>
http://stackoverflow.com/questions/1029029/modal-popup-in-classic-asp0Modal popup in Classic ASP?Eric2009-06-22T19:36:46Z2009-06-23T11:14:03Z
<p>I write in .NEt and in classic ASP. I want to create a modal popup in asp. I like in .NET how the parent page can be disabled and turned a different color. Is this possible in ASP? Or is there no easy solution to get this done? If possible...how?</p>
http://stackoverflow.com/questions/1018824/how-to-trigger-a-pop-up-window-on-a-button-click0How to trigger a pop-up window on a button click?sagar2009-06-19T16:17:03Z2009-06-19T16:35:11Z
<p>The button is derived from user control. I want to associate a pop-up window on click of that particular butoon. I can able to achieve this on click of anyother buttons on my base page but as that particular button is coming from a user control I am not able to trigger the pop-up window.
Need help.</p>
<p>$('#btnSendOrder').click(function() {// code here}) // btnSendOrder is from a user control.In this case pop-up is not coming.</p>
<p>$('#btnSendOrder').click(function() { // code here}) // btnSend Order is from the base page itself. In this scenario pop-up comes out. </p>
http://stackoverflow.com/questions/867109/jquery-login-modal-popup-for-asp-net-2-o-page1jQuery Login modal popup for ASP.NET 2.o PageShyju2009-05-15T05:38:41Z2009-06-09T19:44:56Z
<p>Dear All,</p>
<p>I have an ASP.NET web page(Not MVC ) (HomePage.aspx) and another page (PRiceList.aspx).I have a login feature in my Home page.So when a user logged in the site, They can go to the pricelist.aspx page easily using a link in homepage.If some one is entering the page with out logging in , I want to show a modal login box (background disabled) to login . I saw this in jqueryui site.Can any one tell me how to impement this in my site ? Is there any security problem in this since i am using the javascript to send the user credentials to the site when using this method (I am not sure) . Please advice. Thanks in advance </p>
http://stackoverflow.com/questions/925357/response-redirect-on-popup-to-go-to-main-page0Response.redirect on Popup to go to Main page..Hanish2009-05-29T10:31:58Z2009-05-29T10:49:22Z
<p>I have a pop up, that opens when i select a link in parent form.
If some exception occurs in page load catch of pop up window, then the error should go to parent page, not the pop up page.
if exception is not occured in the pop up window, it will load pop up only with the contents.
Error message is coming from one asp page., please help...</p>
<p>the code in the catch block of popup page as follows..</p>
<pre><code>catch(Exception ex)
{
Response.Redirect("");
Response.End();
}
</code></pre>
http://stackoverflow.com/questions/878125/is-it-possible-to-fire-off-another-buttons-onclientclick-event0Is it possible to fire off another button's onclientclick event??Eric2009-05-18T14:48:19Z2009-05-18T15:06:51Z
<p>I have a modal popup that has a targetId to a hidden button. I want the popup to occur when a button in a grid is clicked but that button is programmed behind the code and therefore the targetId would be invalid...</p>
<p>So I wanted to attempt to set the gridview's button's onclientclick event to be the onclientclickevent of that hidden button. Is this possible or should I be going about this another way.</p>
<p>here is how i created the grid button</p>
<pre><code> If Not IsPostBack Then
Dim field As New TemplateField
field.HeaderText = "Sub Departments"
Dim col As DataControlField = field
GridView1.Columns.Add(col)
For i As Integer = 0 To GridView1.Rows.Count - 1
Dim btnview As New ImageButton
btnview.ImageUrl = "\images\icons\xp_ico_search_24x24.gif"
GridView1.Rows(i).Cells(3).Controls.Add(btnview)
Next
End If
</code></pre>
http://stackoverflow.com/questions/812876/help-me-re-center-a-modalpopup-within-an-iframe-when-the-iframes-parent-window-s0Help me re-center a ModalPopup within an iframe when the iframe's parent window scrollsCory Larson2009-05-01T19:28:29Z2009-05-01T19:43:45Z
<p>I have a web page with an iframe in it (I don't like it, but that's the way it has to be). It's not a cross-domain iframe so there's nothing to worry about there.</p>
<p>I have written a jQuery extension that does the centering of a ModalPopup (which is called from an overridden <strong>AjaxControlToolkit.ModalPopupBehavior._layout</strong> method) based on the width and height of the iframe's parent, so that it looks centered even though the iframe is not in the center of the page. It's a lot of tricky stuff, especially since the web page I added the iframe to runs in quirks mode.</p>
<p>Now, I've also overridden <strong>AjaxControlToolkit.ModalPopupBehavior._attachPopup</strong>, so that when the parent window resizes or scrolls, the ModalPopup inside of the iframe recenter's itself relative to the new size of the parent window. However, the same code that attaches the popup to the parent window's <em>resize</em> event does NOT work for the parent window's <em>scroll</em> event. See the code below, and the comments:</p>
<pre><code>AjaxControlToolkit.ModalPopupBehavior.prototype._attachPopup = function() {
/// <summary>
/// Attach the event handlers for the popup to the PARENT window
/// </summary>
if (this._DropShadow && !this._dropShadowBehavior) {
this._dropShadowBehavior = $create(AjaxControlToolkit.DropShadowBehavior, {}, null, null, this._popupElement);
}
if (this._dragHandleElement && !this._dragBehavior) {
this._dragBehavior = $create(AjaxControlToolkit.FloatingBehavior, {"handle" : this._dragHandleElement}, null, null, this._foregroundElement);
}
$addHandler(parent.window, 'resize', this._resizeHandler); // <== This WORKS
$addHandler(parent.window, 'scroll', this._scrollHandler); // <== This DOES NOT work
this._windowHandlersAttached = true;
}
</code></pre>
<p>Can anybody explain to me why the resize event works while the scroll event doesn't? Any suggestions or alternatives out there to help me out? I am working with jQuery, so if I can use something besides the $addHandler method from MS that'd be fine. Be aware that I also have to override the _detachPopup function to remove the handler, so I need to take that into account.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/561568/asp-net-validation-not-executing-in-a-javascript-showmodaldialog-call0ASP.NET validation not executing in a JavaScript showModalDialog callMichael Kniskern2009-02-18T15:38:26Z2009-04-02T18:17:44Z
<p>I currently open a pop up window from my parent page using using a JavaScript .showModalDialog function. The pop up window contains some ASP.NET validation controls which do not display when the user clicks the ASP.NET button to submit the form. If there is an error on the page, the validation message(s) do not display, the record is not updated on the server side and the pop window closes.</p>
<p>(The asp.net validation controls do not stop the pop up window from doing a server postback)</p>
<p>Has anyone expereinced this behavior before and is there any way to prevent it?</p>
<p>Here is my showModalDialong call source code:</p>
<pre><code>function OpenChildWindow(id)
{
var sFeatures = sFeatures="dialogHeight: 525px;";
sFeatures += "dialogWidth: 900px;";
sFeatures += "scroll: yes;";
sFeatures += "status: no;";
sFeatures += "resizeable: no;";
var url = "MyPopUp.aspx?ID=" + id;
var childName = "ChildForm";
entryWindow = window.showModalDialog(url, childName, sFeatures);
if (entryWindow == true)
{
window.document.getElementById("<%= btnUpdateParent.ClientID %>").click();
}
}
</code></pre>
<p><b>Note:</b> When the pop up modal is closed, a ASP.NET button is "clicked" to update an ASP.NET UpdatePanel on the parent to show the changes to the record modified in the pop up window.</p>
http://stackoverflow.com/questions/658817/web2-0-popup1web2.0 popup?hfidgen2009-03-18T15:38:07Z2009-03-27T21:00:08Z
<p>Hiya, </p>
<p>A site I need requires a check on the user when they click links which will take them to external websites (don't ask why, it just does..)</p>
<p>The client wants some sort of popup box which will then have "do you really want to go?" along with 2 buttons for yes or no.</p>
<p>Now I've done all this in the classic browser popup so far, as it degrades really gracefully to just leave the plan ahref links if JS is turned off. My question is... is there another way of doing this which is a little more funky than plain ol' crappy popups?</p>
<p>I've been experimenting with <a href="http://jquery.com/demo/thickbox/#sectiond-1" rel="nofollow">thickbox</a> and some <a href="http://www.learningjquery.com/2006/09/slicker-show-and-hide" rel="nofollow">JQuery sliders</a> but as soon as you disable Javascript </p>
<p>a) there is no "popup"
b) even the link no longer points to where it was supposed to go thanks to the markup required to activate the no longer working "popup"</p>
<p>Any ideas or thoughts? :P</p>
http://stackoverflow.com/questions/377614/can-multiple-css-hover-popups-occupy-the-same-space-within-a-single-div0Can multiple CSS hover popups occupy the same space within a single div?pjkoc2008-12-18T11:47:50Z2008-12-18T14:49:18Z
<p>Hi, I'm trying to have text spans pop up on a hover pseudo-class for different lines in a menu (list items). I can have the pop-ups occupy the same space in the div if the menu/list is horizontal, but a vertical list places the popups at the same vertical height as the "parent" list/menu item.</p>
<p>Any ideas - please!</p>
<p>Here is the relevant code I have so far:</p>
<pre><code><div id="greenback">
<div class="serviceframe">
<div class="serviceslist">
<ul>
<li><a href="">item 1<span>this is popup1.</span></a></li>
<p><li><a href="">item 2<span>This is popup 2's text but I want it to appear in exactly the same place as popup 1's text does.</span></a></li></p>
<p><li><a href="">item 3<span>same here - how can I get all popups positioned in exactly the same place?</span></a></li></p>
</ul>
</div><!-- closes serviceslist-->
</div><!-- closes serviceframe -->
</div><!-- closes greenback-->
</code></pre>
<p>CSS:</p>
<pre><code>ul {
list-style: disc url(w-arrow.png) outside;
}
#greenback {
position: relative ;
top: 0em ;
width: 800px ;
height: 250px ;
background-color: #7EBB11 ;
border: 3px solid #112D82 ;
}
/*********SERVICE LIST MENU**********/
.serviceframe {
position: relative ;
width: 100% ;
height: 94% ;
background-color: #666666 ;
top: 3%; bottom: 3%;
}
/*--serviceframe is now sitting in greenback--*/
.serviceslist {
position: relative ;
width: 100% ;
height: 90% ;
top: 1% ;
background-color: #7EBB11 ;
font-family: Optima, Calibri, Candara, Century-Gothic,
Arial, sans-serif;
font-size: 100% ;
color: black ;
display: table-cell ;
vertical-align: middle ;
z-index: 100 ;
}
.serviceslist a
{position: relative;
display: table-cell; text-align: left; height: 100%; font: 1em sans-serif;
text-decoration: none; color: #112D82;
background: #7EBB11 ;
}
/*appearance of the <a> item (but before the <span> tag) on hover*/
.serviceslist a:hover {
color: white;
}
/*appearance of the spanned content within <a></a> tags when not hovered*/
.serviceslist a span {display: none;}
/*appearance of spanned content within <a> tags when hovered*/
.serviceslist a:hover span {
position: absolute;
display: table-cell;
margin-top: 0em; margin-left: -50%; z-index: 100;
width: 40%; height: auto; color: #FFFFFF; background-color: #7EBB11;
font: 14px Verdana, sans-serif; text-align: left;
}
</code></pre>
<p>Any ideas gratefully received!</p>
http://stackoverflow.com/questions/114024/modal-popups-usability0Modal popups - usabilitysirrocco2008-09-22T09:46:23Z2008-09-22T12:45:46Z
<p>What are the cases where you'd use a modal popup ?
Does it interrupt the user's flow, if it all of a sudden opens up in his face ?
Would you avoid modal popups in general ? or when should one be careful of using them ?</p>
<p><strong>Edit:</strong></p>
<p>To be a bit more specific, the situation here is this :</p>
<p>I have a menu on the right, (VisualStudio style) when the user wants to add an element, should I expand the menu down and let them select something from it there, and then have to press the OK button, or display a Modal popup forcing them to select.</p>
<p>(the selection step is mandatory.)</p>