Null 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 ...
missing 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 ...
In 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 ...
Override 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 ...
Glazed 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 ...
Glazed 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 ...
Can 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 ...
Now 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 ...
AbstractForm 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 ...
How 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 ...
Hello, 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 ...