Re: Navigation Problem

2005-06-22 Thread Michael Jouravlev
On 6/22/05, Michael Taylor <[EMAIL PROTECTED]> wrote: > Michael, > > It appears from your > articles that your solution depends upon tight integration with the > application model. There are two down sides to this. The obvious one > is writing more code, where it might be generated from a model.

Re: Navigation Problem

2005-06-22 Thread Michael Taylor
Michael, Thanks. Your solution was very interesting. It is very similar to what I wound up building, although you took the time to generalize it and write some great articles. One thing that I didn't like about my previous attempts was dependence upon writing Java code to model the transit

Re: Navigation Problem

2005-06-22 Thread Michael Jouravlev
Just cannot help it; I am sorry, just cannot keep it inside ;) On the other hand, maybe not everyone knows about it yet? Homepage: http://www.superinterface.com/easywizard.htm Live demo: http://www.superinterface.com/wizard/signupWizard.do Now back to the regular programming (c) Frank ;-) P.S. T

Re: Navigation Problem

2005-06-22 Thread Michael Taylor
ts state, based on that validates the input, does its stuff and forwards to the right jsp. -Original Message- From: Clint Shank [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 4:18 PM To: user@struts.apache.org Subject: Navigation Problem We have a struts app that gathers data sc

RE: Navigation Problem

2005-06-22 Thread Abdullah Jibaly
ways posts to the same action, which then figures out its state, based on that validates the input, does its stuff and forwards to the right jsp. -Original Message- From: Clint Shank [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 4:18 PM To: user@struts.apache.org Subject:

Navigation Problem

2005-06-22 Thread Clint Shank
We have a struts app that gathers data screen by screen and then processes the data at the end. On each screen is a previous and next button. The possible screens in the workflow depend on certain state: what things the user has chosen so far, the user's preferences and so on. My question is.