Can someone suggest me how to implement a pop-up window in Java Swing. I want the pop-up window to be a modal window (user cannot return to the main window when the pop-up is open).

I tried doing it using JDialog but it allows only one widget for user input to be in it whereas I need multiple widgets. I may be wrong here but this is what I was able to do.

Appreciate your help.

link|improve this question

67% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Use a JDialog. There is no restiction on what you can add, you can add whatever you want to a JDialog (exactly the same as when using a JFrame)

link|improve this answer
Thanks objects. It was so simple to do this. – Gabriel Parenza Mar 10 '10 at 18:45
not a problem, glad it helped – objects Mar 10 '10 at 23:31
feedback
  1. Layout your widgets in a JPanel.

  2. Use JOptionPane.showConfirmDialog with your panel as the message (with, for example, optionType JOptionPane.OK_CANCEL_OPTION).

  3. Read user input from your panel's state when appropriate (for example, the call returns JOptionPane.OK_OPTION rather than JOptionPane.CANCEL_OPTION).

link|improve this answer
feedback

I hope i found the right info for you

JDialog(Dialog owner, boolean modal)

for more information check this links: http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/modality/

http://java.sun.com/docs/books/tutorial/uiswing/components/dialog.html

link|improve this answer
Apologies for not mentioning the JDK version I am using is 1.5. – Gabriel Parenza Mar 8 '10 at 22:24
feedback

Your Answer

 
or
required, but never shown

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