2
votes
1answer
95 views
What Java versions does Griffon support?
I want to write a Swing application in Griffon but I am not sure what versions of Java I can support.
…
0
votes
1answer
276 views
What is the ‘best’ type of java.awt.image.BufferedImage?
I am creating a buffered image that is going to be a snapshot of a JComponent (via paint()) and rendered inside an …
1
vote
How do I get InputVerifier to work with an editable JComboBox
I wouldn't use the term workaround.
Based on all the swing code I've seen from a bunch of different sources that looks to be the canonical solution.
…
1
vote
Is there an easy way to change the behavior of a Java/Swing control when it gets focus?
A separate class that attaches a FocusListener to the desired text field can be written. All the focus listener would do is call selectAll() on the text widget when it gains the focus.
…
1
vote
Modal dialogs in IE gets hidden behind IE if user clicks on IE pane
What argument are you using for the parent?
You may have better luck if you use the parent of the Applet.
javax.swing.SwingUtilities.getWindowAncestor(theApplet)
…
1
vote
How can I catch AWT thread exceptions in Java?
There is a distinction between uncaught exceptions in the EDT and outside the EDT.
…
0
votes
Java, Swing: how do I set the maximum width of a JTextField ?
Don't set any of the sizes on the text field. Instead set the column size to a non-zero value via setColumns or using the constructor with the column argument.
What is happening is that th …
4
votes
Do I have to explicitly call System.exit() in a Webstart application?
Because of bugs in WebStart, yes. WebStart starts up a "secure thread" for it's own purposes that interacts with the EDT. This SecureThread prevents the automatic termination of the Java process …
1
vote
Where is groovy.swing.factory.BindProxyFactory?
It's in the Groovy 1.6 builds, not the 1.5.7 builds. Apparently GfxBuilder 6.1 was built against the Groovy 1.6 codebase.
…
1
vote
Java Swing Table size problem
@jfpoilpret is correct in that the preferredScrollableViewpoet size needs to be managed. The groovy way would be to bind it to the preferred size of the table. So if this was added inside of the …
1
vote
How can I determine which menu item called an ActionListener?
While event.getSource() will definitely let you know which particular button the event came from it has the side effect of needing to track the generated buttons or snooping into the button. Also …
0
votes
How to show a second MVC group as a dialog box in griffon
The easiest way would be to use the view panel as the root of a dialog in the parent MVC group. In the view for the group that yor code snippet is the controller of you could do something like this …
0
votes
(SOLVED) GridBagLayout manager and resizing controls
For JTextField (as mentioned in the contents) call setColumns(int) to set a preferred size on the text.
For JComboBox, call setPrototypeDisplayV …
