Tagged Questions
4
votes
1answer
652 views
How to make an input dialogbox which has more than one textfield(ie. can take many inputs)
Hey there, I have implemented an input DialogBox, however this has one textfield. I need an input DialogBox which has many textfields to take input from and store each String in an array.
What I have ...
2
votes
3answers
185 views
Java multiple selection dialog box
I have a dialog box with a drop down menu like this:
Object[] possibilities = {"1", "2", "3", "4"};
ImageIcon icon = new ImageIcon("images/middle.gif");
int i = ...
2
votes
3answers
1k views
how to use JComboBox using Enum in Dialog Box
I define enums:
enum itemType {First, Second, Third};
public class Item
{
private itemType enmItemType;
...
}
...
1
vote
1answer
42 views
Entering a text in a dialog form
What I want to do is quite simple : to display a dialog form containing an EditText in which the user can specify a message.
So far, I have tried to use the DialogFragmentclass. With the explanations ...
1
vote
2answers
633 views
How to create the above custom dialog in android?
Can someone tell me how to create the above dialog view similar/exactly to the link [here][1], whereby the focus of the problem is to create the view in the centre of the picture?
I have done some ...
1
vote
1answer
771 views
DialogBox depth (z-index) in GWT
Having many GWT DialogBox'es, the first one always stays at the bottom and new ones are created on top.
What I am trying to obtain is a way to bring one of such dialogs on top when it is clicked.
I ...
1
vote
4answers
770 views
How to implement “Saving…” dialog box in Java?
I want to pop up a dialog box that says "Saving..." and once the operation is completed, it simply disappears. While the saving is in progress, I dont want the user to be able to do anything. I also ...
0
votes
1answer
54 views
Get GWT DialogBox absolute position - onLoad/onAttach/show do not helps
I am stuck in getting an absolute position of DialogBox. I know it is the common problem (and strange workaround) for PopupPanel (which is parent to DialogBox) to set it, but what if I want to get ...
0
votes
3answers
38 views
How to embed HTML into Java custom Dialog Box?
Can anyone explain to me (point me to right documentation) on how to embed an HTML page into Java dialog box? Thank you all so much.
0
votes
5answers
173 views
In Android how to set image in DialogBox?
I created a dialogBox in my Android application.i want to show with image in that dialog Box.But i Cannot create image.kindly help me.
Thanks in Advance
here my Coding;
public void ...
0
votes
2answers
216 views
Android Dialog Box Creation with Progress bar
I am new to android development. I want to develop a dialog box with a progress bar in my application. When i click the search button the dialog box should appear with the progress bar, showing that ...
0
votes
1answer
81 views
getting place name from edit text and placing on the map [closed]
Possible Duplicate:
i am getting null pointer exception from String placeName = placeText.getText().toString();
here is my code for taking the place name from alert dialog box and i want to ...
0
votes
1answer
528 views
how to fix width and height of primefaces dialogbox
In my web application i want to fix height and width of primefaces dialogbox in the way in which the dialogbox appears exactly in the middle of my web page, and if one want to minimize the window then ...
0
votes
1answer
92 views
On dialog boxes
I'm trying to make a dialogue box which displays an answer and will print to the screen but am having no success. The code looks like this:
/*
* To change this template, choose Tools | Templates
* ...