TableFormBuilder « Web « Spring Q&A





1. TableFormBuilder bind a component 2 times.    forum.springsource.org

TableFormBuilder bind a component 2 times. Code: public JComponent[] addTextArea(String propertyName, String attributes) { return addBinding(getBinding(propertyName, getTextArea(propertyName)), attributes, getLabelAttributes() + " valign=top"); } in AbstractFormBuilder: Code: protected JComponent getTextArea(String propertyName) { ...

2. Differences in TableFormBuilder and GridBagLayoutFormBuilder    forum.springsource.org

Differences in TableFormBuilder and GridBagLayoutFormBuilder Just an observation, but it would seem that having some consistency between these two builders would help (both in new user understanding) and in being able ...

3. A problem with TableFormBuilder    forum.springsource.org

A problem with TableFormBuilder Hi all I am using TableFormBuilder.add(...) method to create my form. There is a problem with my creation. If I call TableFormBuilder.add(String propertyName) method it will be ...

4. Default layouts in TableFormBuilder (TableLayoutBuilder)    forum.springsource.org

I'm using TableFormBuilder and I need a way to set layout defaults to the rows and cols (has FormLayout in JGoodies) because we have many forms to build (hundreds) and some ...

5. label position with TableFormBuilder    forum.springsource.org

Right now the default of TableFormBuilder is to put the label to the left of the component. I have a text area and want to put the label on top of ...

6. How add FileChooserComboBox to TableFormBuilder    forum.springsource.org

It's true approach? ... FileChooserComboBox fileChooser = new FileChooserComboBox(getFormModel(), "filePath"); formBuilder.getLayoutBuilder().cell( fileChooser.getControl() ); ...

7. Label on *top* of JList in a TableFormBuilder    forum.springsource.org

Label on *top* of JList in a TableFormBuilder Hi I have a question about JList and Labels. I'd like to add a JList to a TableFormBuilder BUT have the label on ...

8. Displaying a List in the TableFormBuilder    forum.springsource.org

Hi, I have a property in my class that returns a list. I am having trouble displaying the contents of the list in a Form. I am using TableFormBuilder. // code ...

9. TableFormBuilder private method    forum.springsource.org

Hi I'm extending TableFormBuilder to add new methods similar to "addTextArea". And I wan't to use method: addBinding(Binding binding, JComponent wrappedControl, String attributes, String labelAttributes) but it's private. It would be ...





10. "Expanding table" and TableFormBuilder    forum.springsource.org

"Expanding table" and TableFormBuilder Hi *, Got a question about the best way to include a JTable in a FormBuilder. To complicate things, I'd like the tables to expand if the ...

11. [TableFormBuilder] Aligning label in front of JTextArea    forum.springsource.org

[TableFormBuilder] Aligning label in front of JTextArea Hi, I think this should be a very common problem: (Take a look at the JLabel in front of the JTextArea) alignTextArea.png I use ...

12. Updating old code - how to put JButton in a TableFormBuilder.    forum.springsource.org

Updating old code - how to put JButton in a TableFormBuilder. Hi, I'm updating an application from an extremely old version of Spring Rich (> 1 year old). I used to ...

13. TableFormBuilder    forum.springsource.org

Hi, in the TradeFormBuilder's method add, the third (or second) argument is a string. I've found some examples on the web, where strings like "align=right colSpan=1" etc. are passed as this ...

14. TableFormBuilder, dobule precision?    forum.springsource.org

Hey, I'm using a TableFormBuilder to, well, build a form. Now everything works great, except a double field. formBuilder.add("price"); adds a JTextField, but with only three digits after the dot (say ...

15. How to set tooltip text for the form fields when built using TableFormBuilder?    forum.springsource.org

Hi, How do I set tooltip text for the form fields when built using TableFormBuilder? I've provided both label and caption for the field in the messages.properties, like this currencyForm.currency.label = ...

16. Labels in TableFormBuilder    forum.springsource.org

Hello all I'm a starter in Spring RCP world and I'm having troubles building a form... I realize that the width of all the labels in the form is related to ...





17. TableFormBuilder: Layout problem when used with TabbedPanes    forum.springsource.org

TableFormBuilder: Layout problem when used with TabbedPanes Hi, I use a TableFormBuilder to create a form that is shown within a dialog. Now I have added a JTabbedPane within a cell ...