Questions tagged [jgoodies]

The JGoodies Swing Suite provides components and solutions that complement Swing to solve common user interface tasks. It advocates a UI production process that lets you save time and money while ensuring consistent and elegant design.

The JGoodies Swing Suite provides components and solutions that complement Swing to solve common user interface tasks. It advocates a UI production process that lets you save time and money while ensuring consistent and elegant design. More info at http://www.jgoodies.com/products/swing-suite/ .

93 questions
0
votes
1 answer

How can I use FormLayout in Java Swing (JGoodies) in IntelliJ

I'm really disappointed about that when I use Swing Java in "IntelliJ" it runs without any problem but when I use JGoodies… FormLayout it doesn't run with me and show error that: Exception in thread "main" java.lang.NoClassDefFoundError:…
0
votes
0 answers

Swing -- lazy update

Does Swing have something similar to vaadin's LAZY value change mode? As in "update on every change but after a short delay and cancel the event when the value changes again before the event has finished"? We have a float-type text field that we…
User1291
  • 7,664
  • 8
  • 51
  • 108
0
votes
3 answers

Clearing Last Selected Value JCombobox when ComboBoxModel Becomes Empty

Here is a scenario: I have two JComboBoxes (call them combo1 and combo2 ) that get their values from a database[In the DB, these two have a 1:M relationship]. When the screen shows up I populate combo1 with values from the database and then take the…
user276002
  • 178
  • 3
  • 10
0
votes
0 answers

Jgoodies with ListBean

Before asking a question, i want to say that the Title doesn't give clear picture. My question is very specific so not able to frame title. So put a title which is little relevant. Also, i found Jgoodies with List Binding but it doesn't give better…
0
votes
1 answer

Creating Executable Jar with Maven includes Jgoodies GUI

Im developing a java program and im using jgoodies for its GUI. I was making executable jar from my project, before developing GUI. It was working from command line. But when i developed gui for my project and made a package from it, it didnt work.…
MartK
  • 614
  • 2
  • 8
  • 21
0
votes
0 answers

FormLayout: where are the "ButtonBarBuilder..addGridded..." methods?

I am currently learning the ropes of jgoodies FormLayout and have already made quite some progress. However, the ButtonBarsExample from the java2s.com website doesn't seem to be compilable as there are some methods missing in my com.jgoodies.forms…
emax
  • 307
  • 3
  • 7
0
votes
1 answer

JGoodies FormLayout and JWindow

I have a problem with swing that I cannot resolve since a whole day. I want to show a popup in JWindow if someone types into a JTextField. But if the layout uses a JGoodies FormLayout with more components in one row then the display is going to be…
Andras
  • 45
  • 1
  • 6
0
votes
1 answer

how to handle focus lost and focus gain event using "shift + tab" and "tab"?

I want the ability to gain the focus on the next focusable component on clicking tab and to get the focus back on the previous component on shift + tab. So need a help on how to achieve the same. thanks
GuruKulki
  • 25,776
  • 50
  • 140
  • 201
0
votes
2 answers

jgoodies had no impact on JTabbedPane

I use jgoodies in my project. It works good only with some components. Look at my project, please. As you can see JButton, JTextField, JLabel, JFrame have been successfully modified. But JTabbedPane and JRadioButton have not been modified. Jgoodies…
0
votes
0 answers

Jgoodies binding not firing firePropertyChange

I'm modifying an original JGoodies binding example found on JGoodies Binding: Presentation Model Property Change Example I'm wondering however why I need to manually fire firePropertyChange(FIRST_NAME_PROPERTY, oldValue, this.firstName); to make the…
saimiris_devel
  • 667
  • 1
  • 6
  • 19
0
votes
1 answer

How to remove guiding lines of Jgoodies from final product?

How do I remove the red lines that outline my columns and rows? They are helpful for development but they don't look good on the final product.
Jonathan
  • 135
  • 1
  • 10
0
votes
0 answers

Using JGoodies for my application

I want to use JGoodies for my java application so I downloaded the necessary libraries and put them in the CLASSPATH: But I can't use the components of JGoodies such JGSplitButton and JGTextField and eclipse don't know it: What am I missing ?
SlimenTN
  • 3,383
  • 7
  • 31
  • 78
0
votes
1 answer

JGoodies FormLayout refuses to resize my JComboBox

It seems that the JComboBox is one Java component that really, really hates having its height adjusted...I tried countless combinations of set[Preferred|Minimum|Maximum]Size() and various different layout managers until the following GroupLayout…
Kenny83
  • 769
  • 12
  • 38
0
votes
2 answers

How to make large components not to blow up the layout when using JGoodies FormLayout?

I'm using JGoodies Forms 1.8.0 I've been having a problem when a single oversized label causes the entire layout to no longer fit in a window. I would like that text to be visually trimmed, so it's obvious for the user that the text doesn't fit, but…
Karol S
  • 9,028
  • 2
  • 32
  • 45
0
votes
0 answers

Free GUI builder to make Jgoodies Forms

I want to make a big form with Jgoodies FormLayout. I have learn recently how to make forms without a GUI builder, but this form is so big that everytime i have to make a change it takes me a while. So i was wondering if there is a free GUI builder…
ivan0590
  • 1,229
  • 11
  • 18