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
2
votes
2 answers

jgoodies how to remove component added with PanelBuilder?

I am using com.jgoodies.forms.builder.PanelBuilder to add Buttons and rows. Then I call PanelBuilder.getPanel() and attach the panel to a JPopupMenu. Is there a way to remove and reattach some of the attached components from the Panel that…
d56
  • 825
  • 1
  • 9
  • 26
2
votes
2 answers

How to change values of panel on selecting a row in a table : jgoodies

I am using Jgoodies binding to bind the table with my data. What listener i should implement so that when a cell is selected the values in a panel are changed. My model class of table extends AbstractTableAdapter which is an Jgoodies binding…
harshit
  • 7,925
  • 23
  • 70
  • 97
2
votes
2 answers

Data binding library with support for generics and SWT/JFace?

JFace Databinding doesn't support generics, so it isn't particularly type-safe. And apparently it never will, since they wish to preserve Java 1.3 support. JGoodies supports generics since 2.0.0. Has anyone ported JGoodies 2 to SWT/JFace? Or is…
Alexey Romanov
  • 167,066
  • 35
  • 309
  • 487
2
votes
1 answer

Java + Jgoodies binding: radio button binding

I'm stumped... I'm trying to use JGoodies binding to bind a radiobutton to an Enum property. I can't seem to get it to work. Below is a simple example, it's a table of beans each with an immutable number and a mutable "adjective" property. The…
Jason S
  • 184,598
  • 164
  • 608
  • 970
2
votes
1 answer

A growing a panel does not end at the end of the JFrame - FormLayout

I have the below code, where I have a JPanel that needs to occupy all the space of the JFrame but stop when the frame completes. When using the Form Layout it does not. Please see the below code import com.jgoodies.forms.debug.FormDebugPanel; import…
sethu
  • 8,181
  • 7
  • 39
  • 65
2
votes
0 answers

Align column width of multiple JGoodies FormLayouts

Using JGoodies FormLayout: I have a Panel that contains a Salutation, a name and a forename. Let's call it NamePanel I now want to build another Panel that contains the first Panel and adds a few more rows. Let's call it NamedAddressPanel The layout…
Cola Colin
  • 233
  • 1
  • 2
  • 10
1
vote
1 answer

JGoodies binding will not let me repaint my JComponent

I have a bound JTextField and a seperate graph made from a JComponent. When I drag on my graph, a marker should update and the bound JTextField should show its coordinates as it is being dragged. When I am binding, the graph will not repaint until I…
smuggledPancakes
  • 9,881
  • 20
  • 74
  • 113
1
vote
1 answer

JXScrollUp compile

I didn't find a package contains a class JXScrollUp because of sample source code JXScrollupTest.java. I'm using this classpath:…
Lukas
  • 11
  • 1
1
vote
0 answers

JGoodies Binding + constraints: how to achieve it?

I have a tough question which probably has an easy answer (I hope). I'm using JGoodies Binding to bind a slider to a ValueModel; works great. Suppose I have the following (contrived) situation, where I want to model buying chocolates and caramels…
Jason S
  • 184,598
  • 164
  • 608
  • 970
1
vote
1 answer

How do I use jGoodies Form Layout with Netbeans 7

I am using Java 1.6.0_29, with Ubuntu and Netbeans 7. I want to use the jGoodies Forms Layout with Netbeans. How do I get this working? I tried to add it as a layout manager for use with the builder GUI but I cannot seem to get it working. Thanks...
Eric
  • 1,020
  • 1
  • 12
  • 18
1
vote
1 answer

JGoodies Forms Demo code

I must admit the fact Forms layout does save loads of time, wrt other Swing layouts. I did try out other examples from http://www.java2s.com/Open-Source/Java-Document/Swing-Library/jgoodies-forms/Catalogjgoodies-forms.htm and worked fine. However, i…
alkber
  • 1,426
  • 2
  • 20
  • 26
1
vote
1 answer

jgoodies binding several jtoggle button

I would like to bind 3 toggle button with my domain object. The 3 toggle should be mutually exclusive, if one of the 3 boolean property in my domain object is true, then the toggle corresponding is selected and the other 2 are unselected. I have a…
xtrem06
  • 253
  • 1
  • 3
  • 10
1
vote
0 answers

JMenu looks weird when using jgoodies-looks WindowsLookAndFeel

So I've been trying to give my Java Swing application a native Windows look using JGoodies-Looks' 2.7.0 Windows L&F, but stumbled upon a problem while trying to create a JMenuBar, as it looks weird. What am I doing wrong? This is how a JMenu looks…
Max Rudko
  • 51
  • 7
1
vote
2 answers

JGoodies Binding bug question about bufferedModels and keyboard input

I am using JGoodies Binding on a JTextField like so: trigger = new Trigger(); PresentationModel adapter = new PresentationModel(model, trigger); ValueModel…
smuggledPancakes
  • 9,881
  • 20
  • 74
  • 113
1
vote
3 answers

Why does insertUpdate get called in my DocumentListener when I change focus? (Java Swing)

I have a JTextField with a documentListener on it. I want to change the background color when I add or remove characters to this textfield. I should be using a document listener correct? It works, but it also fires when I gain and lose focus on this…
smuggledPancakes
  • 9,881
  • 20
  • 74
  • 113