Haven't been here in a while, doing no Swing work these days, but glad to see things are still progressing.
As for the JIDE docking, the JIDE integration code that I wrote and was migrated to a...
Type: Posts; User: jwray; Keyword(s):
Haven't been here in a while, doing no Swing work these days, but glad to see things are still progressing.
As for the JIDE docking, the JIDE integration code that I wrote and was migrated to a...
Have a look at http://www.assembla.com/wiki/show/biobrowser which has a web start of an application using Spring RCP using the JIDE integration. It maybe a little out of date version wise since I've...
Hi,
I've used application events before to decouple my components and haven't noticed them being too expensive. I'd say if the events are being generated by humans any overhead will be negligible....
Hi,
not been doing any swing work of late so haven't been here much but just saw the release notice elsewhere. Congratulations, lot of work gone in there and I look forward to checking the widget...
Hi,
I'm investigating using Spring dm server for a new project and I can't find any documentation of how error notifications can be configured. For example, in my current Jetty based installs I...
Have you tried something like:
protected JComponent createFormControl(){
TableFormBuilder formBuilder = new TableFormBuilder(getBindingFactory());
formBuilder.add("datetest");
...
The source code also contains a number of working examples demonstrating various aspects of the framework. Those are invaluable.
I was referring to the source code in the current subversion head. Not sure how far back those examples go.
Jonny
As I said, I've never used the commands the way you mentioned. I have only ever used them as attached and triggered to a user input.
So why isn't the command attached to the OK button? Or am I...
Have you configured the binder selection strategy to use the binder you want?
Look in the richclient-application-context.xml of the showcase application and it illustrates how to map a value class...
Hi,
Have you looked at org.springframework.richclient.samples.showcase.bindingRadioButtonEnumDialog class in the samples module?
Seems exactly like what you are trying to do.
Jonny
Not exactly sure as I've never used a command like that before (getting it explicitly from the command manager) but my guess is that since you haven't added the command to anything visual (menu bar...
Use case is that two things happen to the error message: i) the original file is written to an error directory and ii) an error log is created from the service exception.
For some reason I never...
Actually, after having implemented what I needed, I'm not sure a move file is needed as its own entity.
With the current system the message paths I ended up with are very clear with very well...
That's funny, probably a reflection of the process the original developers went through.
But, you should have a better understanding of one way a Spring RCP application can be customized now, by...
I shouldn't have been so hasty at posting the question, I figured it out by looking at the ErrorUnwrapper class in the examples.
Thanks.
Hi,
I've successfully (and very easily I might add) set up an application to poll a directory for new files, process those file by calling a service and move them to a 'Processed' directory. I'm...
Actually to change the implementation of the frame used by the pages you don't need to replace the ApplicationPageFactory but rather the PageComponentPaneFactory. You do this by injecting the...
Hi,
what you are seeing is an example of SimpleInternalFrame which is designed to replace JInternalFrame. It is constructed as the control within DefaultPageComponentPane. The...
Thanks for the replies. First, yes, I'm sure I don't need distributed transactions - I've architectured my solution to explicitly avoid the need for a transaction manager and XA.
Thanks for the...
Hi,
I have a situation I've never come across before and couldn't find an example of. Here's my situation:
- I have two transactional resources I need to configure in the same application...
Ahh, sorry I misunderstood the first message.
I've actually never had that problem with my unit tests. I tend to test my classes is isolation, outside of the spring configuration environment. I...
Not really RCP specific but yes, Spring has support for both JUnit and TestNG. Take a look at the testing section in the user manual...
Posted too soon:
[command id].icon
[command id].selectedIcon
works - I hadn't tried capital 'I' before posting.
However, this brings up a problem. While this works, in that it switches...
Hi,
simple question: I need to change the icon on a toggle command button depending if it is selected or not. The CommandButtonIconInfo suggests a default and selected state are designed to do...