A form (window, box, etc.) presented to a user, usually for the purpose of capturing input or to make a decision.
137
votes
18answers
55k views
Handling Dialogs in WPF with MVVM
In the MVVM pattern for WPF, handling dialogs is one of the more complex operations. As your view model does not know anything about the view, dialog communication can be interesting. I can expose ...
89
votes
18answers
67k views
Android: How to create a Dialog without a title?
I'm trying to generate a custom dialog in Android.
I create my Dialog like this:
dialog = new Dialog(this);
dialog.setContentView(R.layout.my_dialog);
Everythings works fine except for the title ...
83
votes
2answers
62k views
Open directory dialog
I want the user to select a directory where a file that I will then generate will be saved. I know that in WPF I should use the OpenFileDialog from Win32, but unfortunately the dialog requires file(s) ...
74
votes
19answers
124k 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 ...
56
votes
10answers
55k views
How to change theme for AlertDialog
I was wondering if someone could help me out. I am trying to create a custom AlertDialog. In order to do this, I added the following line of code in styles.xml
@drawable/color_panel_background
...
55
votes
12answers
51k views
How to hide close button in wpf window?
I'm writing a modal dialog in wpf. How do I set a wpf window to not have a close button? I'd still like for its WindowState to have a normal title bar.
I found ResizeMode, WindowState, and ...
49
votes
6answers
40k views
Choose File Dialog
Does anyone know of a complete choose file dialog? Maybe one where you can filter out all files except for ones with specific extensions? The internet needs such an example. I have not found anything ...
49
votes
2answers
20k views
How can I get a Dialog style activity window to fill the screen?
I am using an activity with the dialog theme set, and I want it to be full screen. I tried all sorts of things, even going through the WindowManager to expand the window to full width and height ...
45
votes
8answers
20k views
How to prevent a dialog from closing when a button is clicked
I have a dialog with EditText for input. When I click yes button on dialog, it will validate the input and then close dialog. However, if the input is wrong, i want to remain in the same dialog. every ...
45
votes
7answers
43k views
How to make an alert dialog fill 90% of screen size?
I can create and display a custom alert dialog just fine but even so I have android:layout_width/height="fill_parent" in the dialog xml it is only as big as the contents.
What I want is dialog that ...
38
votes
3answers
45k views
How do make modal dialog in WPF?
I am writing my first application in WPF and want to have the user input some data on a modal dialog window. Apparently, this is not simple to do in WPF, because the parent window stays fully ...
36
votes
2answers
32k views
jQuery ui dialog change title after load-callback
I like to change the title from an UI Dialog after i have submitted a form in this UI Dialog. So in the callback-function after load i should suggest, but i've tried and googled without result.
Has ...
35
votes
5answers
1k views
Make dialogs compatible with “large fonts”
Which do you think are best practices for making a windows dialog compatible both with standard fonts (96 dpi) and "large fonts" setting (120 dpi) so that objects don't overlap or get cut off?
BTW: ...
32
votes
2answers
3k views
How would I implement stackoverflow's hovering dialogs?
I am in love with stackoverflow's single-color "click-to-close' hovering dialog boxes that greet a user when they try to vote and aren't logged in or use the site incorrectly. Any idea how and/or ...
30
votes
3answers
19k views
Dialog.show() vs. Activity.showDialog()
As far as I can tell, there are two ways to show a Dialog from an Activity.
Create the Dialog (for example, using an AlertDialog.Builder), and then call the newly created Dialog's show() method.
...
28
votes
22answers
1k views
How would you handle users who don't read dialog boxes?
A recent article on Ars Technica discusses a recent study performed by the Psychology Department of North Carolina State University, that showed users have a tendency to do whatever it takes to get ...
28
votes
2answers
13k views
Animate a custom Dialog
I'm trying to have a custom dialog appear as though it's sliding down from a text view. Is this possible? I can't seem to apply any animation to dialog class. I've tried this line in the constructor, ...
28
votes
9answers
24k views
Apply CSS to jQuery Dialog Buttons
So I currently have a jQuery dialog with two buttons: Save and Close. I create the dialog using the code below:
$dialogDiv.dialog({
autoOpen: false,
modal: true,
width: 600,
resizable: false,
...
27
votes
4answers
40k views
How to open a jQuery Mobile Dialog from javascript?
I have a dialog page and am trying to open it and display results from an AJAX POST.
Here is my jQuery success event:
success: function(resp) {
...
25
votes
5answers
39k views
jquery: close dialog on click (anywhere)
Is there a default option to close a jquery dialog by clicking somewhere on the screen instead of the close icon?
25
votes
6answers
26k views
Android dialog width
I can't seem to control the dialog width. I have a simple layout like so`
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
25
votes
6answers
58k views
How to add two edit text fields in an alert dialog
I am trying to use an alert dialog to prompt for a username and a password in android. I have found this code here:
if (token.equals("Not Found"))
{
LayoutInflater factory = ...
24
votes
3answers
10k views
How to dismiss the dialog with click on outside of the dialog?
I have implemented a custom dialog for my application. I want to implement that when the user clicks outside the dialog, the dialog will be dismissed.
What do I have to do for this?
24
votes
6answers
41k views
Android Number Picker Dialog
Does anyone have any dialogs that will allow a user to pick a number within a certain range? It seems like this would be a fairly common need, but I can't find a common dialog for it and I'd rather ...
23
votes
2answers
6k views
Prevent ProgressDialog from being dismissed when I click the search button (Android)
In a long-running operation, I'm showing a popup dialog (created from ProgressDialog to prevent other operations from happening).
I have made it non-cancellable with setCancellable(false), so I can't ...
22
votes
4answers
27k views
is it possible to create listview inside dialog?
i have created a custom dialog class
public class NewPost extends Dialog
{
// functionality
}
now my requirement is to create listview inside it. i know we can create textboxes,buttons,dropdown ...
21
votes
11answers
41k views
Dialog box not positions center screen
I have a jQuery dialog box that is meant to position in the middle of the screen. However, it seems slightly off-center vertically.
Here is the code:
$('#add_box').dialog({
autoOpen: true,
...
21
votes
7answers
6k views
Tap outside Android dialog to dismiss it?
I was wondering if it's possible to somehow tap outside a popup dialog (or an Activity with a dialog theme), and dismiss it by just tapping outside of it?
I made a quick picture to illustrate it:
...
20
votes
7answers
22k views
Prompt Dialog in Windows Forms
I am using System.Windows.Forms but strangely enough don't have the ability to create them.
How can I get something like a javascript prompt dialog, without javascript?
MessageBox is nice, but there ...
20
votes
5answers
45k views
Java Swing - how to show a panel on top of another panel?
I wish to have an internal (non window) dialog to ask for member input. I would like the dialog to be placed centrally on an existing JPanel.
I have looked at layeredpanes and these seem unusable due ...
19
votes
3answers
16k views
Android Dialog: Removing title bar
I have a weird behavior I can't pinpoint the source of.
I have my app with the classic
requestWindowFeature(Window.FEATURE_NO_TITLE);
to remove the title/status bar.
I then create a Dialog box to ...
19
votes
2answers
20k views
How to create a completely custom Dialogue/Popup in Android (change overlay colour and dialogue window layout)
I would like to completely re-skin the default dialogue component in Android. Specifically I would like to do this:
Change the semi-transparent overlay background from the default black to a ...
19
votes
7answers
39k views
How can I position my jQuery dialog to center?
I have tried following code, but it only positions dialogs left upper corner position to center, and that makes element to be aligned to right. How can I center dialog to real center which counts ...
18
votes
9answers
55k views
Can you wait for javascript callback?
I'm trying to use the jQuery alerts dialog library from http://abeautifulsite.net/notebook/87 instead of the default alerts (which look pretty awful in my opinion). This seems to be a great library, ...
18
votes
3answers
7k views
Inconsistency when setting TextView font size in code and in resources
The official documentation does not seem to answer this, or I can't figure it out.
Element (nevermind the AlertDialog, it happens on any TextView as well):
TextView tv = (TextView) ...
18
votes
3answers
2k views
Feed dialog generating errors with iOS SDK
UPDATE: This problem was resolved when facebook fixed their service.
I'm trying to get the feed dialog to work for sharing with facebook. I had it all working before with the old, deprecated API and ...
17
votes
7answers
19k views
Android Borderless Dialog
I have created an AlertDialog using AlertDialog.Builder, but the Dialog border takes up too much space on the screen. How do I remove the border? I have tried using another Activity to emulate the ...
17
votes
6answers
20k views
WPF: How do I set the Owner Window of a Dialog shown by a UserControl?
I've got a WPF application with these three types of things...
WindowMain
UserControlZack
WindowModal
UserControlZack1 sits on my WindowMain...
<Window x:Class="WindowMain"
...
17
votes
8answers
27k views
Disable 'X' button in top-right of Dialog [duplicate]
Possible Duplicate:
Remove close button on jQueryUI Dialog?
I'm trying to make a dialog that requires a user to agree to terms before continuing, and don't want to allow the user to just ...
17
votes
8answers
38k 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, ...
17
votes
2answers
27k views
Uncaught TypeError: Object [object Object] has no method 'dialog'
I am trying to use the jQueryUI dialog in an MVC3 application but having an issue with it.
The dialog I have is loading a partial view into it where the user will either edit or create a new item. ...
17
votes
6answers
6k views
first dialog after authenticating fails immediately and closes dialog
I'm using the latest Facebook SDK on iOS 5. I can use SSO to successfully authenticate the user, and then I attempt to share a link like this:
NSString *appId = [[[NSBundle mainBundle] ...
17
votes
5answers
9k views
Flash on top of jQuery dialog
I know many have asked this question, but I think my situation is a little bit different.
I have a site where I have some ads which is Flash hidden in a because of xhtml/html compatibility issues. ...
16
votes
1answer
12k views
How to do loading dialogs in Android?
Those dark spinning progress dialogs in the Amazon and Engadget apps - are those standard in Android?
16
votes
8answers
14k views
jQuery UI datepicker opens automatically within dialog
I have a datepicker which is used within the jQuery dialog object. The source of the dialog's content is loaded using .load(). Within the dialog I created a script which creates a datepicker for the ...
15
votes
6answers
35k views
jQuery Mobile Alert/Confirmation dialogs
Is there a nice Sencha-like jQuery Mobile solution for Alerts and Confirmation dialogs?
15
votes
5answers
2k views
Android: Under what circumstances would a Dialog appearing cause onPause() to be called?
A snippet from the Android Activities document(scroll down to the "foreground lifetime" line) says :
An activity can frequently transition in and out of the foreground—for
example, onPause() is ...
15
votes
7answers
30k views
Javascript close alert box
I want to be able to close an alert box automatically using javascript after a certain amount of time or on a specific event (i.e. onkeypress). From my research, it doesn't look like that's possible ...
13
votes
4answers
13k views
Android Back Button and Progress Dialog
I have an AsyncTask that shows a progressDialog whilst working (it calls runOnUiThread from within doInBackground to show the progress dialog).
Whilst its running I want to allow the use of the back ...
13
votes
3answers
5k views
How to attach callback to jquery effect on dialog show?
My problem is that I do not know how to attach callback to the jquery ui dialog show.
The show is actually an option:
$( ".selector" ).dialog({ show: 'slide' });
I want to have a callback after ...