Tagged Questions
The modal-dialog tag has no wiki summary.
32
votes
12answers
50k views
How to implement “confirmation” dialog in Jquery UI dialog?
I am try to use JQuery UI Dialog to replace the ugly javascript:alert() box.
In my scenario, I have a list of items, and next to each individual of them, I would have a "delete" button for each of ...
32
votes
5answers
54k views
AJAX Jquery UI Dialog window loaded within Ajax style Jquery UI Tabs
The ajax tabs work perfectly well. It's pretty straightforward with that part. However, getting the ajax UI Dialog modal window to trigger off of a link has been un-succesful.
Any help in this would ...
26
votes
3answers
25k views
ASP.NET MVC modal dialog/popup best practice
I am looking for the most standard way to archive modal dialogs in ASP.NET MVC. An example of what I am trying to do is when I select an item from my "list" page, I want the "details" page to be a ...
19
votes
9answers
4k views
What's your favorite jQuery modal plugin?
I'm looking for a jQuery plugin to show a modal-style popup consisting of a few paragraphs of text and a picture, which the user will view and close.
So far, my search has turned up jqModal, ...
17
votes
11answers
3k views
Why are modal dialog boxes evil?
Re the recent question at when are modal dialogs truly necessary?. WHY are modal dialog boxes evil? Is it because people don't read them anyway? Because they are often implemented so poorly? ...
17
votes
3answers
11k views
How do I make modal dialog for a Page in my WPF-application?
I have a WPF Window which has a among other controls hosts a Frame. In that frame I display different pages. Is there way to make a dialog modal to only a page? When I'm showing the dialog it should ...
16
votes
1answer
5k views
How to auto-center jQuery UI dialog when resizing browser?
When you use jquery UI dialog, all works well, except for one thing.
When the browser is resized, the dialog just stays in it's initial position which can be really annoying.
You can test it out on:
...
14
votes
3answers
3k views
Good or bad practise for Dialogs in wpf with MVVM?
i lately had the problem of creating add and edit dialogs for my wpf app.
all i want to do in my code was something like this. (I mostly use viewmodel first approach with mvvm)
ViewModel which calls ...
14
votes
9answers
34k views
Is a Modal Confirm Box Using JQuery Possible?
Looked around quite a bit, and can't seem to find a JQuery solution (maybe its just a limitation of JavaScript) for this:
<a href="somelink.php"
onclick="return confirm('Go to ...
13
votes
4answers
5k views
jquery-ui Dialog: Make a button in the dialog the default action (Enter key)
In a jquery modal dialog, is there a way to select a button as the default action (action to execute when the user presses enter)?
Example of jquery web site:
jquery dialog modal message
In the ...
12
votes
6answers
23k views
jQuery UI Dialog Issue With IE
I am using the new jQuery 1.3.2 and jQuery-ui-1.7 libraries along with the UI Dialog. I have a div tag with several form elements (textbox, checkbox, etc.) in it. Upon page load, jQuery shows the ...
11
votes
10answers
37k views
JQuery Modal Boxes and Iframe
I've been using Simple Modal and i feel it doesn't live up to what i need at the moment.
Is there a Modal Box that supports loading external files and allows those external files to close the modal ...
9
votes
3answers
615 views
In PowerShell Form.Show() does not work right, but Form.ShowDialog() does
I am trying to display an image via powershell. I made a script based on this forum post.
If I use ShowDialog() it works fine, except the powershell execution stops while the dialog is up. However, ...
9
votes
2answers
806 views
Non-blocking modal Swing progress dialog
A daft question, but I really cannot get this to work: I have some long-running process in a Swing application which may take several minutes. I want to display a progress dialog to the user while ...
9
votes
6answers
11k views
Can't set DialogResult in WPF
I show a WPF window using ShowDialog() from the calling window. The window opens and is modal as expected. However, in my OK and Cancel button's click events in the dialog window I set ...
9
votes
7answers
2k views
Are modal dialogs a good practice for the web?
Are modal windows/dialogs considered a good practice for websites? One of the things that concerns me about using a modal window is that it is so much like a pop-up window and it could cause user ...
8
votes
5answers
3k views
sleep() in Javascript
Suppose I want to block Javascript execution for certain time for some weird reason, how can I do that. There is no sleep() in JS. Pls don't say do a while() loop because that's bad. I can do a ...
8
votes
5answers
3k views
Opening an about box using MVVM pattern
I'm working on a new WPF application and I'm trying to stay as close to the MVVM pattern as I can. My XAML files right now have no codebehinds, and all my interactivity is achieved using Josh Smith's ...
8
votes
3answers
6k views
jQuery UI Dialog button positioning
How can I position buttons from jQuery UI separately from each other. Buttons are aligned in same direction. I would like one button to be aligned to left while the other to the right. Is it possible?
...
8
votes
5answers
2k views
How do you get the ESC key to close a dialog in Winforms?
Often when using software these days, the ESC key will close a dialog without persisting any changes I've made. I like that especially because even though the dialog may have a cancel button on it, I ...
7
votes
5answers
574 views
jQuery Modal Confirmation Dialog Not Submitting Form
I am trying to pop up a confirmation modal when the user presses the delete button on the edit form. The modal pops up fine, but when jQuery should be submitting the form, it's not doing anything. I ...
7
votes
2answers
511 views
WPF DialogResult declaratively?
In WinForms we could specify DialogResult for buttons. In WPF we can declare in XAML only Cancel button:
<Button Content="Cancel" IsCancel="True" />
For others we need to catch ButtonClick ...
7
votes
2answers
2k views
Simple ASP.NET MVC CRUD views opening/closing in JavaScript UI dialog
I have various simple ASP.NET MVC views for CRUD operations which work fine on their own as a simple webpage. I will now integrate them into the website itself (into the content) and have for instance ...
7
votes
3answers
21k views
Open Jquery modal dialog on click event
The below code works fine for only the first click event. However for any subsequent click nothing happens.
I tested this on firefox, ie7 but still the same. Am I missing something?
The below code ...
6
votes
0answers
545 views
ASP.NET JQuery based Modal Dialog Control [closed]
First of all this is not a question, i just made a user control which seems to solve the issue discussed in the following link.
http://forum.jquery.com/topic/dialog-will-move-its-div-tag-to-body
The ...
6
votes
1answer
400 views
MFC application and a non-MFC modal dialog
I'm writing a Win32 plug-in DLL for a third-party MFC app. The DLL needs to display a modal dialog. When I do this using DialogBox() or other plain Win32 API (e.g. I tried to write my own modal loop), ...
6
votes
3answers
801 views
Winforms: Close modal dialog when clicking outside the dialog
I have an open modal dialog (Windows Forms). I want, that the dialog is closed when clicking outside the dialog (on the parent form). How can I do that?
6
votes
3answers
4k views
Custom dialog on Android: How can I center its title?
I'm developing an Android application.
How can I center the title for a custom dialog that I'm using?
Thanks.
6
votes
2answers
600 views
How to build a generic/re-usable modal dialog for WPF following MVVM
I would like to build a generic/re-usable modal dialog that I can use in our WPF (MVVM) - WCF LOB application.
I have a Views and associated ViewModels that I would like to display using dialogs. ...
6
votes
2answers
1k views
WPF and Prism View Overlay
I need some help with overlaying views using the prism framework.Its a little more complexed than that so let me explain.I could be over-thinking this as well :D
i have shell (wpf window) and i have ...
6
votes
5answers
9k views
JQuery implementation of Facebook's Modal Box
I was wondering if anyone knew of a jQuery implementation of this MooTools modal box.
I've seen Facebox, but it looks like the old Facebook modal dialog layout and not the newer one.
If there aren't ...
6
votes
5answers
1k views
When is modal UI acceptable?
By and large, modal interfaces suck big rocks. On the other hand, I can't think of a better way to handle File Open..., or Print... and this, I think, is because
they are occasional actions, ...
5
votes
2answers
2k views
Create more serious looking jQuery error dialog?
Is there a jQuery UI class you can use to create a more severe looking error dialog box than the one below?
This is the HTML we use to create the dialog:
<div style="display:none" ...
5
votes
4answers
2k views
jQuery modal dialog button text
Based on the code below to show a JQuery dialog, the button text shows up as the literal "b" as opposed to the value of the variable b.
Ie: showWarningDialog('myBody', 'myTitle', 'go') shows a ...
5
votes
5answers
1k views
WPF application exits immediately when showing a dialog before startup
Update: I guess, what I need is to understand what is the "correct", "supported" way to show a dialog before application start in WPF.
Here's the code:
public partial class App : Application
...
5
votes
2answers
249 views
Stackoverflow like modal popup in jquery
Which jquery modal plugin does stackoverflow uses (ie) When i try to close a question? Any suggestion..
5
votes
1answer
508 views
ALT + TAB is not working after displaying MessageBox on modal dialog
ALT + TAB is not working after displaying MessageBox on modal dialog...
I've three projects (P1, P2 and P3) under one solution file. P1 contains P1Form.cs, P2 contains P2Form.cs.
Detail of these ...
5
votes
4answers
951 views
Find out programmatically if a process is demanding user input
How can I programmatically (in C#) determine, if ANOTHER foreign application (native, java, .NET or whatever...) is currently demanding user input? Can this be done fully in Managed code?
What I'm ...
5
votes
5answers
4k views
Error window show modal in MVVM WPF
I have implemented my MVVM error message as a message dialog that subscribes to error messages via a mediator class, so that other viewmodels can notify it if any errors occur.
When an error occurs, ...
5
votes
6answers
10k views
jQuery UI Dialog individual CSS styling
I'm looking to style a modal dialog (using UI Dialog) with unique CSS that is separate from the traditional dialog, so in essence to have two jQuery dialogs that each look different.
I've styled one, ...
5
votes
1answer
5k views
Modal Form in asp.net mvc RC using jquery
I am new to ajax / jquery and have had difficulty finding a simple sample incorporating the following:
ASP.Net MVC RC1 (or 2)
jquery
modal form
I would like the user to be able to click a ...
5
votes
1answer
6k views
Difference between .Owner property and ShowDialog(IWin32Window owner)?
I presume a winform's owner can be set explicitly via the .Owner property OR by passing the owner in the overloaded method ShowDialog(IWin32Window owner)
I am unable to understand why these methods ...
5
votes
3answers
675 views
When are modal dialogs truly necessary?
Modal dialogs are evil, but I keep reading "You should remove modal dialogs when possible"
When isn't it possible to remove modal dialogs? I mean, what are some truly modal tasks that force us to ...
5
votes
7answers
4k views
How do you disable caching on Modal dialogs in IE?
We have implemented a popup window as a modal dialog using the IE method:
window.ShowModelDialog(...aspx)
The target of the popup window is itself an ASP.Net web page.
Assume for the following ...
5
votes
3answers
1k views
Can a JavaScript modal dialog be modal only to the tab and not to the whole browser window?
Modern browsers have multi-tab interface, but JavaScript function window.showModalDialog() creates a modal dialog that blocks all of the tabs.
I'd like to know if there is a way to create a modal ...
5
votes
4answers
14k views
jQuery Thickbox or similar to show iFrame?
I have been looking at jQUery thickbox for showing modal dialogs with images, it is great. But now I have the need to display a hidden div of content that contains an iFrame in a similar fashion, ...
5
votes
4answers
1k views
What is the most stable modal dialog implementation across browsers to use from javascript for a web app?
I'm using a lot of JQuery in a web application that I am building for a client and I want to find an javascript implementation of a modal dialog that is reasonably stable across the following browser ...
4
votes
2answers
55 views
Force Modal Form to be Shown in Taskbar
According to MS when you show a modal form in VB6 it does not show in the taskbar 'by design'
But is there any way to make a VB6 Modal form to be shown in the taskbar (the ShowInTaskbar property has ...
4
votes
1answer
202 views
How to make OpenDialog show modal in Firemonkey?
When I'm calling an OpenDialog from my form on ButtonClick event. The dialog does not shows as modal and is also displays in taskbar (in WindowsXP). I can return to main form and click Open again and ...
4
votes
4answers
234 views
jQuery dialog always centered
How can I implement, that a jQuery modal dialog with auto width & height is always centered in the browser. Also after resizing the window of the browser.
The following code doesn't work. I think ...