Tagged Questions
4
votes
2answers
1k views
grails web flow exception handling
In my Grails app, I have defined the following (simplified) web flow
def registerFlow = {
start {
action {RegistrationCommand cmd ->
try {
...
1
vote
1answer
63 views
grails webflow error
i have this grails webflow
def currencyDescriptionFlow = {
start {
action {
flow.messageCommand = new MessageCommand()
flow.currencyId = params.id
...
1
vote
1answer
99 views
Grails Web Flow first state
A few questions about the first state of a Grails web flow:
Is it possible to have multiple start states?
Is it possible for the first state to be an action state?
Assuming the answer to (2) is no, ...
1
vote
3answers
2k views
Grails web flow
Is there any way to pass model data to a view state? Consider the following example view state:
class BookController {
def shoppingCartFlow = {
showProducts {
on("checkout").to ...
0
votes
1answer
406 views
Can a webflow's action state have multiple redirects on success?
Say, I have this type of webflow:
def myFlow = {
state1 {
}
on("next").to("stateAct")
stateAct {
action {
... DB stuff ...
}
}
...