Hello everyone,
This is related to Spring Webflow but I don't see any activity there and may be any of you can help me with this.
I currently have a Spring Webflow application that uses Webflow + Ajax.
I have a view-state called "A" that has several transitions.
The problem is that each transition should validate only a portion of "myClass" and not all.PHP Code:<view-state id="A" model="myClass">
<transition on="X1" .../>
<transition on="X2" .../>
<transition on="X3" .../>
</view-state>
By default you have a single validate method per viewState inside myClass. Basically what I need is to call a different validate method on each transition instead of having a single one.
Is this possible? Any ideas on how to do this?
Thanks in advance!!!


Reply With Quote
