Tagged Questions

1
vote
1answer
59 views

Grails 1.2.1 with Webflow Plugin (1.2.1) - params not being returned

I am using the webflow plugin for Grails for the first time and am having some difficulties. To summarize, once within the Webflow, no information appears to be returning to the controller from the …
0
votes
2answers
99 views

Grails WebFlow with Ajax

I am trying to transition to next state of a WebFlow using Ajax requests. But it stays in the same state and returns the GSP as response for that state while I am expecting the GSP for the next state. …
0
votes
1answer
47 views

Grails web flow previous state url

Hi, is there a simple way to get previous state's URL (or flowExecutionKey is sufficient) in Grails web flow? I can get current flowExecutionKey from request['flowExecutionKey']. Or alternatively is …
0
votes
1answer
51 views

Grails web flow problem with browser’s back button

Hi, I'm having problems to get browser's back button work properly on web flow. Version of grails is 1.1.2. Imagine example code: def someFlow = { ... fillGroup { on("addMember"){ …
0
votes
3answers
80 views

Grails “not-null property references a null or transient value” exception on web flow

Hi, I'm getting "org.springframework.dao.DataIntegrityViolationException: not-null property references a null or transient value: A.b" exception on web flow in grails 1.1.2. there is class B { …
0
votes
3answers
206 views

Grails Webflow - keeping things *out* of flow scope

I'm missing something.... I have a Grails webflow that looks like this:- def childFlow = { start { action { def targets = [] Target.list().each …
1
vote
1answer
193 views

Inheritance and subflows with Spring WebFlow in grails

Spring WebFlow supports some advanced reuse features like flow inheritance and subflows. Using this features in SWF xml definitions is pretty easy, for example: <flow parent="parent"> …
3
votes
2answers
348 views

grails web flow exception handling

Hi, In my Grails app, I have defined the following (simplified) web flow def registerFlow = { start { action {RegistrationCommand cmd -> try { …
1
vote
3answers
331 views

Grails web flow

Hi, 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 …