vote up 0 vote down star
1

I have a Java application and I want to open a new dialog from the main interface where the user can enter his name, surname and country and then click ok. How can I open a dialog which has a number of different input fields and then save that information in a variable?

flag

2 Answers

vote up 0 vote down

This forum post could be helpful.

One possibility to make a custom JDialog is to create a custom JPanel with all the bells and whistles that you need and use that as the Component in one of the static JOptionPane functions.

link|flag
vote up 1 vote down

Extend JDialog and add some JTextFields and maybe some JComboBoxes. then finish it off with some JButtons

You could also look into JGoodies Forms framework its nice and free.

EDIT: Composition example

Based on Pete's comment i dug up this example using composition rather than overriding JDialog

You would want to add getter like

public String getFirstName() {
      return field.getTest();
}

To gain access to relevant input.

link|flag
+1 for reference links – basszero Nov 6 at 10:24
Only extend JDialog (or any other class) if you need to override one or more of its behaviours. – Pete Kirkham Nov 6 at 10:30
I am not really looking to override any features, just have a set of text boxes that are relevant to my application. I am going create a class that extends JDialog. I will save the text in attributes and then access those attributes from the main application to get the text. not sure how clear my explanation was – thearchitect Nov 6 at 10:35
So Pete do you recommend to Wrap the JDialog or how would go about it? – Fedearne Nov 6 at 10:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.