Hi Peter,
I would be glad, if I could contribute some code. But I think, the
code of my example project is not so good. But in an other project I developed some code which could be interessting...
Type: Posts; User: strator; Keyword(s):
Hi Peter,
I would be glad, if I could contribute some code. But I think, the
code of my example project is not so good. But in an other project I developed some code which could be interessting...
I also made an example application which demonstrates the use
of spring rcp with spring-ws to access the amazon webservices:
http://sourceforge.net/projects/amazonrcp
It is some time ago that I...
Hi,
pretty easy:
Application.instance().getApplicationContext();
But I wonder, why you want to call the ApplicationContext from the Service-Layer?
Regards,
Torsten
Hi,
it seems as if java.util.Arrays$ArrayList is something different than
java.util.ArrayList, so spring rcp doesn't know that your converter
should be used. I assume that you use somewhere ...
Hi Dominik,
maybe it won't help you, but have you tried to add some newlines '\n'
within your text?
I know it is just a workaround but I think it would forece a linebreak ;-).
Regards,...
Hi,
I want to know if it is possible to create a readonly form where
you cannot modify any property.
I know that there were already some discussions about this question
on this list but with no...
Hi,
i experienced a similar problem:
I have several tabs in a JTabbedPane; each tab contains a form generated
by the TableFormBuilder. The first part of each form is the same, so i tried to...
Maybe you should try a JRE installed at a different place. Or even
better don't just use a JRE but a SDK.
Adding the following code to your pom.xml should do the trick:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>webstart-maven-plugin</artifactId>...
Hi,
it shouldn't be a problem to make a spring rich application webstart ready and
the way should be the same like for any other java application.
I've already tried it and was successfull. I...
A workaround for this problem is to create an own WindowCommandManager
and override the postProcessAfterInitialization method like prashantbhat suggested:
/**
* @see...
Anyone found a solution for this? Experienced the same problem
when trying to implement a CommandGroup for a popup.
getActiveWindow().getCommandManager().getCommand("popUp", CommandGroup.class)...
Hi,
I had a similar problem. I wrote an interceptor for all my
server calls and used the same code like benoitx.
But the progressbar also doesn't show up during the
server invocation.
Bye,...
Hi,
this is really a strange behaviour. I've tried it in my code (just publishing
LifecycleApplicationEvents within a loop) but without an editor or something
else which is listening for this...
Hi Tobias,
I haven't tried that. Good trick! Much easier than
to introduce a new class ;-).
Thank you!
Bye,
Torsten
Hi,
I tried to use the TigerEnumComboBoxBinder within the bindersForPropertyNames section of the SwingBinderSelectionStrategy, but
this produces an IllegalArgumentException:
...
Ok, after searching a little bit around in the forum and the
example code, I found out how to use the context to configure the
binding.
The context can be used as parameter when creating a binding...
Hi,
can someone give me a hint for what the supportedContextKeys and the parameter "Map context" of the doBind-method of the AbstractBinder
can be used?
Where can I fill this Map?
Thanks,...
Hi,
do you know if the loop is executed completely?
There should be a entry in the log whenever an event
is published.
Regards,
Torsten
It would be better, if we don't have to explicitly set the cell-renderers;
I would expect, that the Converts should be used for that.
Hi,
I set the cellrenderers within the method createFormControl (you have
to override it):
@Override
protected JComponent createFormControl() {
JComponent component =...
Hi,
I don't have a tutorial but I have a tipp to get the client with all the
required libraries running:
Use the maven-dependency-plugin to put all the required libraries into a
lib directory...
Hi,
perhaps you should try to override the method createButtonBar() and
append your own actions to the buttons.
Another way might be, that you can access the commands by there names.
As if've...
Hi,
I think the only solution will be to insert an "empty" user object instead
of a null. Otherwise I think you will alwas get an exception when
Spring RCP tries to access the userAccount and...
Hi ge0ffrey,
thank's for your help!
But perhaps it isn't necessary to change anything because if you
use "../" as prefix to the images it is possible to access the images within
the...