Hi,
since spring 2.5 the class org.springframework.core.ReflectiveVisitorHelper has been deprecated.
I find this class quite usefull for implementing visitors. Is there any replacement or...
Type: Posts; User: Mathias Broekelmann; Keyword(s):
Hi,
since spring 2.5 the class org.springframework.core.ReflectiveVisitorHelper has been deprecated.
I find this class quite usefull for implementing visitors. Is there any replacement or...
Yes if you rename a class for which a template was defined you also need to rename the template. But that is just a part of the refactoring. Since that normally means that you also need to rename...
If anyone is interested: I've posted a blog about a concept which uses the type hierarchy of an object instance to find the view to render.
http://matfoo.blogspot.com
I guess that you are having a property of type String[] in you bean which you bind to a text component. That is probably not what you want.
I've already fixed that in trunk.
thanks for the hint. I updated the archetype pom.
Don't treat the current snapshot as a sandbox et all. The snapshot version stays for the current development version of spring rich. Whenever we...
have a look at http://forum.springframework.org/showthread.php?t=33353 that could be the problem
I'm not sure if that is the cause but I think you have to call some looking methods while you modify the eventlist:
EventList rows = getFinalEventList();...
That problem is related to hibernate proxies. Hibernate wants to lazy load the description property but this is only working when it is happening in the same hibernate session as the bean was loaded....
latest svn should compile now.
The current Implementation for reporting the validation messages shows only the last message. But I also see no easy way to show those messages for the field with...
TableLayoutBuilder.cell(component, "colSpan=3");You have to use 3 as colspan since there is a hidden column to separate label and component column
use the BindingFactory which has been used to...
you can do this with TableLayoutBuilder which you get through TableFormBuilder.getLayoutBuilder(). Simply call TableLayoutBuilder.cell(...) to place your component.
Default values are quite simple if you define the value for the property in your form model bean as the initial value. Any form which uses the bean will take that value and will use it as the default...
can you post the part of the code where you build the constraint?
Can you explain a little bit more what you are going to achieve with
Just guessing:
If you want to make sure that at least one field is filled you could simply define an or constraint which...
Yes. You can find them here: http://spring-rich-c.sourceforge.net/spring-richclient-support/dependencies.html
But the website is not uptodate with current trunk. So the best place would be the...
you are using a wrong version of spring-binding.
If you use spring-rich 0.2.1 you need version 1.0-rc3 of spring-binding.
If you use the latest trunk version of spring-rich (0.3.0-SNAPSHOT) you...
I also think that support for "selector" components in spring rcp can be improved. But I have problems following your example of combos. I suggest you to keep it simple as possible. Declaring...
That is currently a weak point in spring rcp. If a property constraint is nested in a non property constraint it will not be processed in the right way. You have to create a...
You could define a custom constraint which depends on two fields. One field contains the collection of unique values and the other field the value which is entered by the user. The constraint will...
These messages are not errors. They can be ignored. I hope that the next maven version will be more quite.
I think we can change the code to pass the changed column to the new event. But the row index is quite complex because it changes after sorting. So the update event might result into multiple...
I'm not aware of any changes in this area. Maybe it's a result of the changes for resolving the spring rcp services through ApplicationServicesLocator. Please check...
which version of spring rich do you use?
spring rich 0.2.0 has been tested with spring 1.2 and spring 2.0-rc2. Only the samples will have some problems with the dependencies.
@markjvickers: Could you post a stack trace with your problem?