1. Null sub-field in an AbstractForm control forum.springsource.orgNull sub-field in an AbstractForm control I have the following Form : Code: public class XXX extends AbstractForm { public XXX(SwingFormModel singlePageFormModel) { super(singlePageFormModel); } public JComponent createFormControl() { FormLayout layout ... |
2. missing method in AbstractForm forum.springsource.orgmissing method in AbstractForm I'm working on a master/detail form implementation (I tried to start a thread on this but nobody took the bait :? ) In working on this, I ... |
3. Problems in AbstractForm working with editableFormObjects forum.springsource.orgIn working to create a master/detail form implementation, I ran into several limitations and bugs in AbstractForm. I have submitted the problems (along with a patch to resolve them), see: http://opensource.atlassian.com/proj...browse/RCP-160 ... |
4. Override SwingBindingFactory w/out subclassing AbstractForm forum.springsource.orgOverride SwingBindingFactory w/out subclassing AbstractForm Since I have added new component bindings, and I need a simple way to use them (ala the createBoundList in SwingBindingFactory). This leads to the need ... |
5. Glazed FIlterList and AbstractForm.setEditableObjects forum.springsource.orgGlazed FIlterList and AbstractForm.setEditableObjects Before I run off an implement this, I was wondering if anyone has already dealt with integrating the Glazedlists FilterList on top of the AbstractForm's editable object ... |
6. Glazed FIlterList and AbstractForm.setEditableObjects forum.springsource.orgGlazed FIlterList and AbstractForm.setEditableObjects Before I run off an implement this, I was wondering if anyone has already dealt with integrating the Glazedlists FilterList on top of the AbstractForm's editable object ... |
7. DialogPage in a AbstractForm forum.springsource.orgCan I put a TabbedDialogPage inside an AbstractDetailForm? How? Is there a partical reason why DialogPage and AbstractForm don't have a common ancestor and behave like the composite design pattern? For ... |
8. AbstractForm createCommitButton forum.springsource.orgNow is: protected final JButton createCommitButton() { Assert.state(commitCommand != null, "Commit command has not been created!"); return (JButton)commitCommand.createButton(); } Will be better: protected final JButton createCommitButton() { Assert.state(getCommitCommand() != null, "Commit ... |
9. AbstractForm doesn't display labels correctly. forum.springsource.orgAbstractForm doesn't display labels correctly. Hi, I created two forms with names Form1 and Form2 by inheriting the AbstractForm and implemented the createFormControl method as in the examples of RCP. Form ... |
10. How to register AbstractForm w/ WindowManager? forum.springsource.orgHow to register AbstractForm w/ WindowManager? When the main window's close button or the Exit menu is clicked, I want each subwindow with unsaved edits to show a JOptionPane asking whether ... |
11. abstractForm formatting forum.springsource.orgHello, I am confused about AbstractForm formating using string atributes such as "colGrId=label colSpec=leftref" etc. What type of language is used here for and can I find some docs with all ... |