I have taken over mantaince of Valkyrie-RCP after ndeverge here https://github.com/cmadsen/Valkyrie-RCP/
Ported to Spring 3.2.2 and is now in Maven central:
<groupId>dk.navicon</groupId>...
Type: Posts; User: cmadsen_dk; Keyword(s):
I have taken over mantaince of Valkyrie-RCP after ndeverge here https://github.com/cmadsen/Valkyrie-RCP/
Ported to Spring 3.2.2 and is now in Maven central:
<groupId>dk.navicon</groupId>...
Hello
I'm trying to add new items to the getActiveWindow().getToolBar() on the fly like:
public void doExecuteCommand() {
CommandGroup tb = Application.instance()...
So should I use this fork of valkyrie or bluebell
http://code.google.com/p/bluebell/
?
Go get revert on the form model to work I had to add:
Field mediatingValueModelsField = abstractFormModelClass
.getDeclaredField("mediatingValueModels");...
Do make it work I had to use reflection :-( like this
FormModelMediatingValueModel mediatingValueModel = new FormModelMediatingValueModel(
createManual);
DefaultFieldMetadata...
Should have done a search. I guess this thread http://forum.springsource.org/showthread.php?57378-JTable-Binding got the answer.
Hello
I'm trying to add a property that is not present on the form object to my form model object.
The following code does work to some extend but the default commit button in my view does not...
Cannot support VLDocking anymore, any volunteers ?
According to this http://groups.google.com/group/vldocking/browse_thread/thread/e3759116550bdc51?hl=fr
VLDocking is unsupported :-(
Try using
<bean
class="org.springframework.richclient.form.builder.support.ColorValidationInterceptorFactory">
<property name="errorColor" value="255,245,245" />
</bean>
I'm been trying to in contact with the owner of http://code.google.com/p/vldocking/ but without any luck. There is also a fork here http://code.google.com/p/vldocking-plus/ but there is no activity.
We are running with the VLDocking. Would be very happy if VLDocking was included in Valkyrie :-) as it would lessen the migration burden.
We also use Docking windows for other projects...
I did the following and it seems to work.
public class CachingLdapAuthenticationProvider extends
LdapAuthenticationProvider {
private static Log log = LogFactory.getLog(...
Like this
import java.util.Date;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.TimeUnit;
import org.apache.commons.logging.Log;
Ok, thanks for the quick answer.
Is there anyway eg aspect etc I can wrap/proxy the existing bind an just cache the result for eg 10 minutes.
Or should I just try to override the default...
Hello
I have a performance problem using
<http realm="Server" create-session="never" >
<http-basic />
<intercept-url pattern="/xxx**" access="..." />
</http>
You are right the code did not take multiple views docked into a JDialog into account, your code fixes that. Thank you :)
Small typo in the code: desktop should be desk in the code.
Tried it, the inserts part makes no difference
Hello
I'm trying to add a JPanel with JCombobox to the toolbar. It works but the alignment is terrible. See the attachment
Any hints to how to fix the alignment?
Here is the code I use to...
I had a problem with not being able to restore/reopen detached views that was closed by Alt-F4 or X button (with decorations on).
To make it work either stop the jdialogs from closing by:
...
I follow this thread and we use the rules source for validation.
A port to spring 3 will be much appreciated.
Hello
I can not find spring rcp in any public maven repo and searching for rcp in eg mvnrepository.com does not give any results.
Would it be possible to have spring rcp added to a public...
How does your saving code look?
We have use this http://www.toubsen.de/spring-rcp/vl-docking-history with some modifications to save/load the users window layout.
Hello
I have a problem with the AbstractDialogExceptionHandler when exceptions are happening outside the EDT.
Maybe the notifyUserAboutException should do a EDT check and move the display of...
Try creating a VLDockingViewDescriptor programatically.
Hello
Google "spring rcp validation"
This may help
http://java.dzone.com/news/getting-further-with-spring-rc?page=0,6
BR
Carsten