Tagged Questions
A form (window, box, etc.) presented to a user, usually for the purpose of capturing input or to make a decision.
139
votes
10answers
48k views
Remove close button on jQueryUI Dialog?
How do I remove the close button (the X in the top right corner) on a dialog box created by jQueryUI?
98
votes
18answers
37k 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 ...
34
votes
4answers
25k 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) ...
32
votes
5answers
612 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
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 ...
30
votes
9answers
28k 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 ...
28
votes
9answers
28k 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 ...
27
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 ...
24
votes
2answers
2k 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 ...
20
votes
3answers
8k 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 ...
19
votes
3answers
25k 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 ...
17
votes
3answers
962 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 ...
15
votes
7answers
5k 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,
...
15
votes
9answers
36k 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, ...
14
votes
1answer
10k views
jQuery ui dialog change title after load-callback [closed]
Possible Duplicate:
Howto update 'title in jQuery UI Dialog?
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 ...
14
votes
1answer
12k views
Android Activity as a dialog
I have Activity named whereActity which is having child dialogs as well.
now i want to display this activity is as a dialog for another activity..
how can i do that ??
13
votes
3answers
13k views
How to make an alert dialog fill 90% of srceen 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 ...
12
votes
2answers
4k 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.
...
11
votes
1answer
3k 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, ...
11
votes
4answers
14k 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 ...
11
votes
6answers
15k 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
...
11
votes
2answers
25k views
Android How to show dialog to confirm user wishes to exit Activity
I've been trying to show a "Do you want to exit?", type dialog when user attempts to exit an activity. However can't find the appropriate API hooks. Activity.onUserLeaveHint() initially looked ...
11
votes
5answers
6k 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. ...
10
votes
3answers
680 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:
...
10
votes
2answers
1k views
Display “Select Users and Groups” dialog from WPF application?
I need to display the standard "Select Users and Groups" dialog from a .NET/WPF application. I also need to be able to display it under a 64bit OS. I found this CodeProject article, which is quite ...
9
votes
3answers
279 views
Can you access standard Windows strings like 'Cancel'?
I am building a Windows dialog box that has the standard 'OK' and 'Cancel' buttons. Given that Windows uses the same button text in its own dialogs is there a way for me to grab the correct strings to ...
9
votes
3answers
15k views
Android Custom PopupWindow/Dialog
I'm trying to get a completely custom Dialog or PopupWindow, without any of the default Android UI controls (title, background, buttons, whatever).
Is this possible at all? I've spent hours searching ...
9
votes
8answers
9k views
JQuery: Disable 'X' button in top-right of 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 click the 'X' in the top right corner of the dialog to close. I'd like to ...
9
votes
2answers
11k 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?
9
votes
5answers
23k 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 ...
9
votes
4answers
5k views
How do I get System.Windows.ShowDialog() to return 'true'?
How do I get System.Windows.ShowDialog() to return 'true'?
I am a little new to this. System.Windows.ShowDialog's return type is bool? It is supposed to return true when you hit Submit, and false ...
8
votes
2answers
277 views
Designing a Custom Font Dialog/Selector for C# that filters out non true type fonts
Since the inbuilt Font Dialog returns a 'Not a True Type Font' Exception on selecting a Non True Type Font, I'm trying to create a Custom Font Dialog using Font-families which filter out non true type ...
8
votes
1answer
144 views
Why Dialog is not a Component in Scala Swing?
This question arises because I want to capture LostFocusEvent from Dialog. Unfortunately, this event is not fired for non Component derived components. What I want to ask is what is the aim of Dialog ...
8
votes
9answers
1k views
Close Delphi dialog after [x] seconds
Is it possible to get Delphi to close a ShowMessage or MessageDlg Dialog after a certain length of time?
I want to show a message to the user when the application is shut down, but do not want to ...
8
votes
5answers
18k 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 = ...
8
votes
6answers
2k views
jQuery ready function being called twice in a dialog
I am building a jQuery dialog with tabs in a PHP script. The script uses the 'include' directive inside of a loop, iterating over the tabs and including the other scripts. Each of the included files ...
8
votes
4answers
1k views
Delphi - How to prevent Forms/MsgBoxes to move under prior form?
Many times we experienced after Windows 98 era that some dialogs are lost their Z-Order, and moved back to prior form.
For example:
Dialog1.ShowModal;
Dialog1.OnClickButton() : ...
8
votes
5answers
6k 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 ...
8
votes
2answers
9k 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"
...
8
votes
2answers
4k views
JQuery Dialog: How to do partial page refresh and get new dialogs each time
I'm having a workflow issue with my JQuery dialogs when trying to create the dialogs and then doing a partial page render. I'll try to go through a sample scenario, and my apologies in advance for the ...
8
votes
7answers
16k views
Dialog box not positions center screen
I have a jQuery dialog box that is meant to position in the middle. However, it seems slightly off-center vertically.
Here is the code:
$('#add_box').dialog({
autoOpen: true',
width: 300,
...
8
votes
2answers
1k views
How do I handle opening and closing new Windows with MVVM?
With MVVM and WPF what would be a good/straightforward way to handle opening and closing new windows and dialogs? Opening and closing should be driven by the ViewModel right? But the ViewModel should ...
8
votes
9answers
3k views
Fastest way to create a Java message dialog (swing/awt/other)?
I'm creating a Java application that will do some processing then needs to display a message to give the user feedback.
However, it appears to be incredibly slow - taking over two seconds to return.
...
7
votes
1answer
876 views
How to handle Windows Security alert dialog box using Watin IE
I am trying to automate a website using WatIN IE.
As the website bans the ip after few request .So I am setting a bool ipbanned =true when ip gets bannned. In that case and i wish to change the IP. ...
7
votes
3answers
11k 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 ...
7
votes
7answers
4k views
Custom Alert dialog not centered vertically on Android
I made a custom alert dialog box to be displayed at the end of my game so that the player can enter its name to save it. The problem is when I call show() on the dialog appears but it's not vertically ...
7
votes
4answers
2k 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 ...
7
votes
5answers
1k views
jQuery UI Dialog and Textarea Focus Issue
I'm working on a modal comment system using jQuery and jQuery UI, but I'm having some issues with focus. I have a series of divs inside the modal to switch between Login and Add comment, as below:
...
7
votes
2answers
2k views
Android: raise AlertDialog from background thread
In my activity there's some stuff going on in a background thread, which gets started in Activity_1. The processing of the background thread takes a while and I want to notify the user when it's ...
7
votes
2answers
345 views
WiX Standard Dialogues
Does anyone know if there are any WiX standard UI dialouges out there that you can use to integrate into your own WiX msi package?
For example:
Editing Connection Strings to database
Editing paths ...