Due to the restrictions of attachments size, following is only the code I've changed.
Hope it helps!
Mauro.
Type: Posts; User: Manus; Keyword(s):
Due to the restrictions of attachments size, following is only the code I've changed.
Hope it helps!
Mauro.
Hi,
Thanks Mathias, sometimes someone have to tell what you have to do! :)
I've created the binding.
It's very nice to see how easy is to customize the Spring RCP. Congratulations to the RCP...
Hi Andrius,
Thanks for the tip! ShuttleList is a very nice component and reflects exactly my use case, but unfortunately due to the schedule of the project I can't refactor the interfaces at this...
Hi Mathias,
Thanks for the reply.
My use case is the follow:
In a screen, on the left side is a list with all possible values to be choosen. On the right side is another list with 'choosen'...
Thanks Jonny!
Overriding doRemovePageComponent fixed the problem!
Mauro.
Hi Mathias,
Thanks for the quick fixes!
Could you please take a lot at http://forum.springframework.org/showthread.php?t=28656 ?
Some tip about it?
Thanks,
Mauro.
Hi,
I'm here again :)
After upgrading to 0.2.0 the Binding created via SwingBindingFactory.createBoundCheckBox(...) is not showing the selected state when it's value is true. Internaly the...
Hi Jonny,
I realy appreciate your efforts to synchronize with 0.2.0.
I've synchronized with RCP head today and I've changed some Jide-RCP code to keep the compatibility, but two things I couldn't...
Hello,
The SwingBindingFactory is creating BoundComboBox and BoundList with inverse order of elements.
I'm a bit confused but I think the constructor of PropertyComparator is inverting the idea...
Hi Magnus,
Thanks for this thread!
BTW, where's the JideApplicationWindow? Could I replace by DockingApplicationWindow?
Thanks,
Mauro.
Hi,
Thanks for the replies! I've fixed the problem.
I was doing right, the problem is the deprecated SwingBindingFactory.createBoundListModel(...), it should be avoided. The...
Hi,
I'm migrating from a very old, previous version of 0.1 to the head of the project and I'm experiencing some problems. One thing I can't get to work is the ListBinder.
Previously, to create...
Larry,
My english is so bad and sometimes is hard for me to explain what I'm looking for. :)
Thanks for your explanation, now I realy understand the meaning of Master/Details forms.
But this is...
For sure, my example is the worst!
I understood what you say but isn't this I'm looking for!
Let me try to explain in a better way:
I have a form with the follow bean:
public class MyBean...
Hi,
I'm looking for this!
Do you have some news?
Thanks,
Mauro.
I'm trying to use another aproach, but I'm confused:
I've found at least 2 different ways to do the same thing with lists, but I don't know how is the better aproach.
I have two lists. One have...
Hi,
I have a CompoundForm that have a VO as FormObject. I was using the ...binding.swing.ComboBoxModelAdapter to display other property not in my VO, but after the 'forms' package refactoring the...
Hello,
I'd synchronized my workspace and found the new Binder for List.
However, there's a bug in ListBinder.createControl. It's creating a ComboBox, not a List:
protected JComponent...
Hello,
Before RCP 0.1 to create a JList I just does the follow:
this.jlNodes = getFormModel().createBoundList("nodes");//$NON-NLS-1$
this.jlNodes.clearSelection();
...
David,
There are some efforts to do multiple views per page.
Please see: http://opensource.atlassian.com/projects/spring/browse/RCP-56
Mauro.
Hi,
After I upgraded to 'RCP 0.1' I cannot find a easy way to register a CustomEditor.
Previously I just did the follow:
getFormModel().registerCustomEditor("seats", //$NON-NLS-1$
new...
I think what you need is to create a ValueModelWrapper.
Take a look in a app called youAdmin (sourceforge), specialy in ch.lindos.youAdmin.domain.JoinWrapper.
Mauro.
Hi Scott,
Unfortunately the steps are manual, there is no integration.
What I do is to copy the layout builded by tool and paste inside my code doing the tunning.
The code from JFormsDesigner...
Hi Scott,
If you need mode control and visual edit of your forms, I suggest you to take a look in JFormDesigner, it's a WYSIWYG tool.
I'm using it just to draw my interfaces and I'm very...
If I understood, is some like this:
public class MyObj
{
private String code;
private String name;
}
public class MyForm extends AbstractForm