Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
192 views

Is there a tool to visualize a grails webflow?

As I am writing my first grails webflow I am asking myself if there is anyy tool or script what can visualize the flow? Result can be a state diagram or some data to render in a graph tool like ...
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 { ...
3
votes
1answer
124 views

Grails WebFlow DRY Branching Logic

Grails WebFlow noob here... One state in my WebFlow receives two events that need to trigger the same action and then transition to separate states if that action is successful. My initial attempt ...
2
votes
1answer
99 views

Display info messages in jsp for Spring WebFlow 2.0

I have a model with a list of selected topics. Every topic can be presented in a room and there are more rooms that need to be chosen depending of availability. The user can set preferred room for ...
2
votes
1answer
155 views

Grails WebFlow State Name

Grails noob here... How do I get the state name inside a Grails webflow state? I'm prototyping a mobile app using Grails WebFlow and jQueryMobile. Because it's a mobile app comprised primarily of ...
2
votes
1answer
178 views

Grails Webflow errors on first access

I've developed a simple webflow in Grails (mostly to experiment with using webflows- its a bit overkill for this case). After some trials and tribulations with Serializable objects, I have it working ...
2
votes
3answers
1k 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
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
134 views

Grails 2.0.0M1 and WebFlow

Can anyone confirm that the webflow plugin is working in 2.0.0M1? I've installed the plugin but my "*Flow" actions don't seem to be treated differently then my other actions. I've additionally tried ...
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
2answers
318 views

Problem with webflow(s) in Grails

I've just come across a rather odd problem whilst testing my applications webflows. I have two seperate webflows that are accessed once a user logs in depending on whether the user is male or ...
1
vote
1answer
177 views

Grails webflow: merging a new set of params with an existing flow variable

I'm trying to populate a domain class across several steps. I'm having trouble "merging" the new params into the existing flow variable. Below you will see how i'm currently doing it (ie individually ...
1
vote
1answer
166 views

Why is Jetty looking for a JSP instead of a GSP?

I'm testing out my Grails app in Jetty (v.7.0.2). I've created the WAR (grails prod war), and added it to the webapps directory for Jetty. I've removed the "root" folder that was in there. After ...
1
vote
2answers
142 views

webflow in grails application

how can i redirect to the same state more than one time using web flow ex: on('submit'){ def destinationInstance = Destination.get(params.destination) def destinationGroupsInstance = ...
1
vote
1answer
421 views

Rendering a PDF in a Grails Web Flow end state

I am using the Rendering plugin to generate a PDF from within a Web Flow. The problem is that I cannot get my end state to return the PDF response. If I call: renderPdf(template: ...
1
vote
1answer
108 views

Grails web flow: Possible to include the state name in the url?

I'm playing around with Google Analytics goals / funnels. I would like to use this to track a checkout process, but the web flow urls are formated in a way that makes this very hard. Would it be ...
1
vote
1answer
896 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 ...
1
vote
1answer
548 views

Grails web flow previous state url

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 ...
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
19 views

How to render a specific view according a flow param in grails flow?

I need to change the gsp to render dynamically according certain params. the thing is: in the render action I get org.codehaus.groovy.grails.commons.metaclass.PropertyExpression@680dc2a instead of the ...
0
votes
1answer
38 views

Is Spring webflow a good portlet technology choice?

I am working on a porlet app and it looks like the "main" portlet will be pretty complex, with some wizard-type functionality in it. I started with plain Spring MVC but it's clear that the backing ...
0
votes
0answers
41 views

Grails Webflow Configuration

I'm looking for a guide how to configure Webflows in Grails. I'm in a situation in which I would like to turn of the alwaysRedirectOnPause function of the webflow, but I've failed to find any source ...
0
votes
1answer
52 views

Loading fancybox iframe content using grails webflow trigger event

I'm using grail's webflow to manage a multi-stage registration process on my site. A link triggers an event for the start state, and the intention is to load the corresponding view in a fancybox ...
0
votes
0answers
38 views

How to handle the Back Button Grails Webflow

We have a Grails 1.3.7 Application and are using Webflow for a 2 step process. They can end the Process using a Link. Often, after they are finished, they notice that there are still some changes to ...
0
votes
1answer
35 views

Interaction UI and Java Code

Hy Folks, ok, (for me) my problem is hard to explain but I guess for most of you it will seem pretty trivial. I'm building an application using spring webflow. The users have to type in their ...
0
votes
1answer
36 views

Java spring webflow. Tomcat can't find view file

I have big problem. When i do apply to web flow by id, it goes into it but later view state returns 404 Error. Flow xml file is in jar. Jar file is loaded on execution, but i cant understand why ...
0
votes
1answer
31 views

How To Persist The Sate of A Webflow

Say I have a webflow with N states. How can I persist a user's state to a database so that if he leaves the flow somewhere in the middle, he can start where he left off, next time he logs into the ...
0
votes
0answers
41 views

How To Create A Dynamic Webflow

Say I have a Category domain and a Question Domain and a Category hasMany questions. I need to first present the user with a list of categories. They can select any number of categories. Say they ...
0
votes
0answers
37 views

Issue with back navigation in grails web flow

first of all, I'm pretty new to Grails and I'm currently playing around with Web Flows. The background of this is the development of some kind of learning app, in which the users click through a ...
0
votes
1answer
96 views

Grails Webflow display image - flow scope

I have saved an image to a byte[] in a command object and wish to display it in the next stage of the createFlow webflow. I am trying to steer clear of using the file system and / or database system ...
0
votes
0answers
88 views

Grails: Web Flow and withNewSession cause No Connection Specified in serviceā€

I have a web flow, in the flow controller, I use withNewSession to prevent the non-serializable exception, however, in the withNewSession block, any call to the service will cause No Connection ...
0
votes
0answers
57 views

Has anybody ever done the mashup of a web-flow in a third-party site?

Most of the popular mashups involves a single page, such as Map, or Facebook's "like" button. I am wondering how I can include a web-flow to my site, for example, a wizard of registration of another ...
0
votes
0answers
89 views

How to test double submissions on grails webflows?

I have a webflow that utilizes the withForm token mentioned here. So, essentially, I have something like this: def someFlow = { ... someView { withForm { //code ...
0
votes
1answer
395 views

How to test flash.message in a Grails webflow?

I'm using webflows in Grails and I'm currently writing tests for it. Now, inside I've got something that throws an error so I set a message to the flash scope before redirecting: ... if ...
0
votes
1answer
372 views

Accessing request params from a Grails webflow

I'm playing around with Grails webflow and having surprising difficulty reading param values from the request. I have defined a simple flow as follows: def testFlow = { stepOne{ String ...
0
votes
1answer
499 views

Grails Web Flow: Redirect to the webflow from another controller action?

Here's what I think I want to do: class MyController { def goToWizard = { if (params.option1) redirect actionName:'wizard1', params:params if (params.option2) ...
0
votes
1answer
214 views

dojo 1.5 wizards?

I have been looking around for a wizard that can be implemented via dojo... I saw one in dojox but I'm having issues mostly because the sample I saw in the test wizard in the dojo archives used wizard ...
0
votes
1answer
256 views

Json response in Grails webflow

Is it possible to return a json response in a Grails webflow ?
0
votes
1answer
132 views

How do I fake a validation error?

I'm using the Grails Webflow plugin. Here are the domain objects I'm working with: class Foo implements Serializable { String fooProp1, fooProp2 static constraints = { ...
0
votes
2answers
734 views

How to I render validation results in a Grails Web Flow?

I have a Grails WebFlow that is similar to the following example: def myFlow = { init { action { def domain = MyDomain.get(params.id) flow.domain = domain ? domain ...
0
votes
1answer
214 views

Grails Webflow not auto-reloading

Hey all- I'm working on some web flows for a Grails app we're building. I'm (slowly) getting the hang of the webflows themselves, but progress is severely limited due to the fact that changes to the ...
0
votes
1answer
405 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 ... } } ...
0
votes
2answers
1k 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
4answers
2k views

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

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
1answer
475 views

Grails web flow problem with browser's back button

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"){ ...