2
votes
1answer
531 views
Resize a JPanel in line with a JDialog
Hi,
I've got a JDialog which contains a series of JPanels in a CardLayout. Some of these panels contain JTables which I would like to be resized in line with any resizing of the JDialog. I am not …
1
vote
1answer
39 views
JDialog with minimize button
Is it possible to have a minimize and maximize button for a non-modal(modal=false) JDialog.I know JFrame is the ideal solution for this but this change has to be made in an existing code and its …
1
vote
4answers
166 views
How to close a modal JDialog when user clicks outside of JDialog?
I have a Undecorated Modal JDialog which I want to setVisible(false) when the user clicks outside of the modal dialog.
Is this possible in Swing?
What I am doing is popping up a custom editor for a …
1
vote
1answer
257 views
Troubleshooting: JDialog which is modal and yet not modal?
Stumped by this, but maybe, just maybe, someone has had this problem before and can point me in the right direction...
I have a JDialog for displaying the progress of a long-running task, which I …
1
vote
1answer
212 views
Why does JDialog ‘jump’ on setLocationRelativeTo()?
Have a class that extends JDialog. It's initialized entirely on EDT (just in case).
Now,
public PropsDialog (JFrame parentFrame) {
super(parentFrame);
// boring
pack();
…
1
vote
2answers
150 views
Error Dialog Not Being Destroyed
I am working on a project that is using a JTable to display, among other things, a column of dates. We needed validation for the user input for dates, so I have implemented a combination of masking …
1
vote
1answer
123 views
Swing JDialog slow when running remotely
I have experienced performance problems for JDialogs while running my GUI remotely over X11. Does anyone know a workaround?
The GUI is fast when I run it on my local machine, but sometimes we need to …
0
votes
2answers
51 views
JDialog Not Displaying When in Fullscreen Mode
I have an application that runs in fullscreen mode and has been working fine. Now I need to add a simple, undecorated dialog and I'm running into trouble. If I run the application maximized but not …
0
votes
3answers
162 views
Java Swing: positioning dialog on top of existing window
Can someone show simple Java Swing code/web resource that will position the popup dialog center-aligned on top of an existing JFrame window when the JFrame's button clicked?
0
votes
1answer
125 views
Java Swing: JInternalFrame: need a dialog popup
I have a JInternalFrame window that needs to popup a modal dialog box when a JButton is pressed. At first, I tried using JDialog, but I found that JDialog constructor needs:
JFrame
boolean modal
I …
0
votes
3answers
105 views
JMenuItem accelerator not working after showing two non-modal JDialogs? (Mac only?)
I have the problem that the accelerators of JMenuItems aren't working anymore after showing two JDialogs directly after one another.
Please take a look at this small example that reproduces the …
0
votes
1answer
84 views
Minimizable JFrame that stays on top of main application window.
My apps pops up a dialog. Users usually want to switch back and forth between this dialog and the application window for a period of time. I want this dialog to stay on top, so that it doesn't get …
0
votes
4answers
527 views
Programmatically close a JDialog
Is there a way to close a JDialog through code such that the Window event listeners will still be notified? I've tried just setting visible to false and disposing, but neither seem to do it.
thanks,
…
0
votes
1answer
93 views
Solaris 5.10: How do I hide a JWindow button on the task bar?
I am using a JWindow object in my Java application to simulate a mouseover dropdown menu. When the user mouses over a JLabel, the window appears and remains until the mouse exits either the label or …
0
votes
0answers
61 views
Modal JDialog on Mac OSX freezes?
I have a modal JDialog pop up to get some user input in my app. I start a new thread and put setVisible to true after the JDialog is constructed. I can see in debug the last breakpoint hit is when the …
